From fcc4b9cc7eccfebea4bca270335c1398ffe06eaf Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Tue, 11 Apr 2023 14:01:52 +0200 Subject: [PATCH] release 1.1.1 --- NEWS | 13 +++++++++++++ contrib/osc.spec | 2 +- osc/__init__.py | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index a9c78ad2..3f05aaae 100644 --- a/NEWS +++ b/NEWS @@ -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 diff --git a/contrib/osc.spec b/contrib/osc.spec index 3c497b3e..81685fbf 100644 --- a/contrib/osc.spec +++ b/contrib/osc.spec @@ -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 diff --git a/osc/__init__.py b/osc/__init__.py index 49a14c95..2d790274 100644 --- a/osc/__init__.py +++ b/osc/__init__.py @@ -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