From a77f3d43d2aa68891ad2eaf78278dbbbccb0dc68 Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Mon, 28 Aug 2023 13:33:45 +0200 Subject: [PATCH] release 1.3.1 --- NEWS | 13 +++++++++++++ contrib/osc.spec | 2 +- osc/__init__.py | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 68b2241c33..7649631564 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,16 @@ +- 1.3.1 + - Command-line: + - Fix string + int concatenation errors in 'build' command by using f-strings instead + - Fix '--all' option in 'rebuild' command + - Fix 'build' command when '--alternative-project' option is specified and the git branch cannot be mapped to a project + - Stop suggesting that the working directory is git/mercurial/svn/cvs + - Be helpful in deprecating commands + - Configuration: + - Add more config options among integer options + - Library: + - Fix GitStore to error out properly if there is no 'origin' remote in the git repo + - print_buildlog: Remove control characters from build log before printing (CVE-2012-1095) + - 1.3.0 - Command-line: - Add experimental support of Git SCM to the 'build' command diff --git a/contrib/osc.spec b/contrib/osc.spec index 448f2ec135..18569a258f 100644 --- a/contrib/osc.spec +++ b/contrib/osc.spec @@ -31,7 +31,7 @@ %endif Name: osc -Version: 1.3.0 +Version: 1.3.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 91c42666ad..f28623c020 100644 --- a/osc/__init__.py +++ b/osc/__init__.py @@ -13,7 +13,7 @@ from .util import git_version -__version__ = git_version.get_version('1.3.0') +__version__ = git_version.get_version('1.3.1') # vim: sw=4 et