diff --git a/NEWS b/NEWS index cc531120..a9c78ad2 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,15 @@ +- 1.1.0 + - Command-line: + - New class-based commands + - Sort commands before printing help + - No longer read plugins from /var/lib/osc-plugins + - Configuration: + - Do not error out on setting oscrc permissions if the file is owned by another user + - Library: + - Restore 'include_request_from_project' conf option functionality + - Simplify how babysitter works with options and config + - Prefer f-strings over c-style string expansion + - 1.0.1 - Configuration: - Fix a cut&paste error in setting 'disable_hdrmd5_check' config option diff --git a/contrib/osc.spec b/contrib/osc.spec index 4c14c10f..3c497b3e 100644 --- a/contrib/osc.spec +++ b/contrib/osc.spec @@ -31,7 +31,7 @@ %endif Name: osc -Version: 1.0.0 +Version: 1.1.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 e16bb8c9..49a14c95 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.0.1') +__version__ = git_version.get_version('1.1.0') # vim: sw=4 et