1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-02-21 01:32:10 +01:00

release 1.12.0

This commit is contained in:
Daniel Mach 2025-02-03 16:39:32 +01:00
parent b9b3701be1
commit 0b4f39448d
3 changed files with 18 additions and 2 deletions

16
NEWS
View File

@ -1,3 +1,19 @@
- 1.12.0
- Command-line:
- Add 'git-obs pr' command
- Add 'git-obs api' command for making arbitrary API calls
- Change 'git-obs' to use owner/repo[#pull] arguments consistently
- Change 'git-obs repo clone' command to store ssh command in core.sshCommand git config option
- Fix 'request list --interactive' command that wasn't showing request forward prompt when message was part of the state change
- Library:
- Avoid fetching _scmsync.obsinfo when scmsync url contains 'noobsinfo' query parameter
- Fix ssh key priority in 'git-obs repo clone' command
- Fix loading config entries with underscores instead of dashes in the keys
- Fix detecting binary files
- Fix diff highligting
- Connection:
- Implement retries in 'git-obs'
- 1.11.1
- Command-line:
- Fix 'linkpac' command for projects with a project link

View File

@ -51,7 +51,7 @@
%endif
Name: osc
Version: 1.11.1
Version: 1.12.0
Release: 0
Summary: Command-line client for the Open Build Service
License: GPL-2.0-or-later

View File

@ -13,7 +13,7 @@ __all__ = [
from .util import git_version
__version__ = git_version.get_version('1.11.1')
__version__ = git_version.get_version('1.12.0')
# vim: sw=4 et