diff --git a/NEWS b/NEWS index aabd09323..03c84d61f 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,16 @@ +- 1.9.2 + - Command-line: + - Fix 'resolved' command to skip subdirectories in package checkouts + - Fix 'comment' command to resolve project name + - Implement meter.SimpleTextMeter that prints what's being downloaded + - Connection: + - Use configured 'http_headers' in HTTP requests + - Library: + - Fix storing _buildinfo and _buildconfig files in .osc rather than among the source files + - Use findtext() instead of find().text + - Spec: + - Recommend python3-zstandard to support opening control.tar.zst + - 1.9.1 - Command-line: - Add 'createrequest release' subcommand diff --git a/contrib/osc.spec b/contrib/osc.spec index f99f26aff..a8d8989d9 100644 --- a/contrib/osc.spec +++ b/contrib/osc.spec @@ -49,7 +49,7 @@ %endif Name: osc -Version: 1.9.1 +Version: 1.9.2 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 b27a30f96..a95b9c427 100644 --- a/osc/__init__.py +++ b/osc/__init__.py @@ -13,7 +13,7 @@ from .util import git_version -__version__ = git_version.get_version('1.9.1') +__version__ = git_version.get_version('1.9.2') # vim: sw=4 et