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

release 1.1.3

This commit is contained in:
Daniel Mach 2023-05-10 09:11:35 +02:00
parent 00464e34a9
commit d089e878ca
3 changed files with 12 additions and 2 deletions

10
NEWS
View File

@ -1,3 +1,13 @@
- 1.1.3
- Command-line:
- Backup edited messages and notify user about them when osc errors out
- Consider only open requests when listing requests with a given review state
- Fix 'diff' command when no files are specified
- Configuration:
- Add glob support to the 'trusted_prj' config option
- Library:
- Fix core.xmlindent() to work with ElementTree objects
- 1.1.2
- Command-line:
- Add '--buildtool-opt' option passing options to underlying rpmbuild to the 'build' command

View File

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