From 429d1c737ddf0c0cb0efd0f80b0767d1038971bd Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Tue, 7 Jan 2025 13:44:24 +0100 Subject: [PATCH] release 1.11.0 --- NEWS | 32 ++++++++++++++++++++++++++++++++ contrib/osc.spec | 2 +- osc/__init__.py | 2 +- 3 files changed, 34 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 9a0d1b01f..deb690cb3 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,35 @@ +- 1.11.0 + - Command-line: + - Add hint how to deal with scmsync-nobranch scenarios + - Speed loading commands up + - Fix 'log' command to work correctly with --meta --patch options + - Document that 'status' command prints unmodified files in verbose output + - Hide progressbar.Bar widget after ProgressBar has completed + - Avoid printing urlquoted file names in 'getbinaries' command + - Configuration: + - Mute oscrc permissions warning when there's no password set + - Connection: + - Save session cookie even if a request fails + - Library: + - Fix local building in git projects + - Extend xml.etree.ElementTree.ParseError output with a snippet of broken XML + - Sync ScmsyncObsinfo with obs-scm-bridge + - Move running obs_scm_bridge into run_obs_scm_bridge() function + - Convert remaining makeurl() query parameters from deprecated string to dict + - Add more operators to XPathQuery + - Make 'title' and 'description' fields optional in the Package model + - Fix progress bar code to support progressbar2 + - Support LoongArch64 architecture + - Mute pylint errors in show_package_disabled_repos() that are false-positives + - Fix another bytes/unicode issues in core.link_pac() by replacing ElementTree code with XML models + - Fix handling 'lock' field in 'Package' model + - Fix handling SimpleFlag model + - Extend RequestActionSource with 'repository' attribute + - Load most of the modules in commandline.py on-demand + - Fix traceback in 'linkpac --disable-build' + - Spec: + - Add conflict with older versions of obs-service-source_validator to ensure that version compatible with .osc store 2.0 is installed + - 1.10.1 - Command-line: - Fix crash in 'build' command due to undefined 'build_root' variable diff --git a/contrib/osc.spec b/contrib/osc.spec index 2659754d3..b3194e0a9 100644 --- a/contrib/osc.spec +++ b/contrib/osc.spec @@ -51,7 +51,7 @@ %endif Name: osc -Version: 1.10.1 +Version: 1.11.0 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 de187affc..51c10a589 100644 --- a/osc/__init__.py +++ b/osc/__init__.py @@ -13,7 +13,7 @@ from .util import git_version -__version__ = git_version.get_version('1.10.1') +__version__ = git_version.get_version('1.11.0') # vim: sw=4 et