diff --git a/NEWS b/NEWS index 3f0cb9c48..9a0d1b01f 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +- 1.10.1 + - Command-line: + - Fix crash in 'build' command due to undefined 'build_root' variable + - Spec: + - Add missing python3-ruamel.yaml BuildRequires + - Fix rpmlint error about creating the /usr/libexec/git/obs symlink + - 1.10.0 - Command-line: - New git-obs executable with several subcommands diff --git a/contrib/osc.spec b/contrib/osc.spec index 65cdd4def..2444b65fb 100644 --- a/contrib/osc.spec +++ b/contrib/osc.spec @@ -51,7 +51,7 @@ %endif Name: osc -Version: 1.10.0 +Version: 1.10.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 0555ac2f8..de187affc 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.0') +__version__ = git_version.get_version('1.10.1') # vim: sw=4 et