From d089e878ca464e0e8cd29b6554f6643ed01f37df Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Wed, 10 May 2023 09:11:35 +0200 Subject: [PATCH] release 1.1.3 --- NEWS | 10 ++++++++++ contrib/osc.spec | 2 +- osc/__init__.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 1ceaa451..f10e2fe1 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,13 @@ +- 1.1.3 + - Command-line: + - Backup edited messages and notify user about them when osc errors out + - Consider only open requests when listing requests with a given review state + - Fix 'diff' command when no files are specified + - Configuration: + - Add glob support to the 'trusted_prj' config option + - Library: + - Fix core.xmlindent() to work with ElementTree objects + - 1.1.2 - Command-line: - Add '--buildtool-opt' option passing options to underlying rpmbuild to the 'build' command diff --git a/contrib/osc.spec b/contrib/osc.spec index c217ffe2..a9bfe739 100644 --- a/contrib/osc.spec +++ b/contrib/osc.spec @@ -31,7 +31,7 @@ %endif Name: osc -Version: 1.1.2 +Version: 1.1.3 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 31b85d7b..d4d43f40 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.2') +__version__ = git_version.get_version('1.1.3') # vim: sw=4 et