From 2616ca454e6ab6c908f790bb26ddc372476069f7 Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Fri, 23 Feb 2024 09:45:57 +0100 Subject: [PATCH] release 1.6.1 --- NEWS | 18 ++++++++++++++++++ contrib/osc.spec | 2 +- osc/__init__.py | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 42660aba..8bee1fd4 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,21 @@ +- 1.6.1 + - Command-line: + - Use busybox compatible commands for completion + - Change 'wipe' command to use the new get_user_input() function + - Fix error 500 in running 'meta attribute ' + - Configuration: + - Fix resolving config symlink to the actual config file + - Honor XDG_CONFIG_HOME and XDG_CACHE_HOME env vars + - Warn about ignoring XDG_CONFIG_HOME and ~/.config/osc/oscrc if ~/.oscrc exists + - Library: + - Error out when branching a scmsync package + - New get_user_input() function for consistent handling of user input + - Move xml_indent, xml_quote and xml_unquote to osc.util.xml module + - Refactor makeurl(), deprecate query taking string or list arguments, drop osc_urlencode() + - Remove all path quoting, rely on makeurl() + - Always use dict query in makeurl() + - Fix core.slash_split() to strip both leading and trailing slashes + - 1.6.0 - Command-line: - The 'token --trigger' command no longer sets '--operation=runservice' by default. diff --git a/contrib/osc.spec b/contrib/osc.spec index 464fbfea..b0f1007a 100644 --- a/contrib/osc.spec +++ b/contrib/osc.spec @@ -44,7 +44,7 @@ %endif Name: osc -Version: 1.6.0 +Version: 1.6.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 aec69c61..6017fdd1 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.6.0') +__version__ = git_version.get_version('1.6.1') # vim: sw=4 et