1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-24 22:06:14 +01:00

release 1.1.0

This commit is contained in:
Daniel Mach 2023-04-03 13:45:36 +02:00
parent b3e88c5380
commit 9e0d7783d6
3 changed files with 14 additions and 2 deletions

12
NEWS
View File

@ -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

View File

@ -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

View File

@ -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