1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-13 09:16:14 +01:00

release 1.1.1

This commit is contained in:
Daniel Mach 2023-04-11 14:01:52 +02:00
parent c2b0898bbe
commit fcc4b9cc7e
3 changed files with 15 additions and 2 deletions

13
NEWS
View File

@ -1,3 +1,16 @@
- 1.1.1
- Command-line:
- Fix 'creq' command that wasn't working at all
- Fix 'ls' command when listing all projects by setting project argument to '/'
- Fix regression: Run interactive config setup on missing config or credentials
- Append plugin dirs to sys.path to allow loading modules installed next to the plugins
- Do not recurse into subdirs when loading plugins
- Configuration:
- Display apiurl when asking for a username or a password
- If apiurl is not set in interactive_config_setup(), use apiurl from DEFAULTS
- Library:
- Decode entities in HTTPError message body
- 1.1.0
- Command-line:
- New class-based commands

View File

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