1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-25 17:36:13 +01:00

release 1.1.2

This commit is contained in:
Daniel Mach 2023-05-03 10:11:24 +02:00
parent aa5e0952e2
commit 32a3078d67
3 changed files with 20 additions and 2 deletions

18
NEWS
View File

@ -1,3 +1,21 @@
- 1.1.2
- Command-line:
- Add '--buildtool-opt' option passing options to underlying rpmbuild to the 'build' command
- Fix 'diff' command to support diffing selected files only
- Identify inherited packages in the 'dependson' command output
- Bring the '--debug' option back to the 'buildinfo' command
- Fix 'buildhistory' command by setting the type of the '--limit' option to int
- Library:
- Fix a traceback when failed to unlock a keyring
- Don't retry on 400 HTTP status code in core.server_diff()
- Clean-up the '.old' folder if an exception happens
- Document 'popt' attribute in the _link template
- Fix build.get_repo() to return only directory that contains 'repodata/repomd.xml'
- Connection:
- Retry on receiving the following HTTP status codes: 400, 500, 502, 503, 504
- Allow disabling retry on 400 HTTP status code
- Fix urlgrab to skip mirrors with invalid scheme
- 1.1.1
- Command-line:
- Fix 'creq' command that wasn't working at all

View File

@ -31,7 +31,7 @@
%endif
Name: osc
Version: 1.1.1
Version: 1.1.2
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.1.1')
__version__ = git_version.get_version('1.1.2')
# vim: sw=4 et