1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-03-01 05:32:13 +01:00

release 1.6.1

This commit is contained in:
Daniel Mach 2024-02-23 09:45:57 +01:00
parent 64760193ca
commit 2616ca454e
3 changed files with 20 additions and 2 deletions

18
NEWS
View File

@ -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 <prj>'
- 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 - 1.6.0
- Command-line: - Command-line:
- The 'token --trigger' command no longer sets '--operation=runservice' by default. - The 'token --trigger' command no longer sets '--operation=runservice' by default.

View File

@ -44,7 +44,7 @@
%endif %endif
Name: osc Name: osc
Version: 1.6.0 Version: 1.6.1
Release: 0 Release: 0
Summary: Command-line client for the Open Build Service Summary: Command-line client for the Open Build Service
License: GPL-2.0-or-later License: GPL-2.0-or-later

View File

@ -13,7 +13,7 @@ __all__ = [
from .util import git_version 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 # vim: sw=4 et