1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-02-24 11:12:14 +01:00

release 1.1.4

This commit is contained in:
Daniel Mach 2023-05-24 08:59:45 +02:00
parent 45ad7349ee
commit 56de8ceebb
3 changed files with 12 additions and 2 deletions

10
NEWS
View File

@ -1,3 +1,13 @@
- 1.1.4
- Command-line:
- Change 'review list' command to display open requests (state: new, review, declined)
- Fix running osc in an AppImage by switching to the correct working directory
- Handle ProtocolError exception
- Library:
- Add 'req_states' parameter to osc.core.get_review_list()
- Connection:
- Fix grabber to work with old urllib3 versions that do not contain URLSchemeUnknown exception
- 1.1.3
- Command-line:
- Backup edited messages and notify user about them when osc errors out

View File

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