1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-11-10 14:56:14 +01:00

release 1.5.0

This commit is contained in:
Daniel Mach 2023-11-22 08:55:15 +01:00
parent 04f782a694
commit c662d70822
3 changed files with 14 additions and 2 deletions

12
NEWS
View File

@ -1,3 +1,15 @@
- 1.5.0
- Command-line:
- Change 'rdiff' command to display diff for _project if no package is specified
- Update 'build' command with initial support for 'productcompose' build type
- Change 'build' command to disable preinstall images in rootless builds
- Configuration:
- Fix conf.write_initial_config() to use read_file() instead of deprecated readfp()
- Other:
- Support installing osc into virtualenv
- Spec:
- Recommend 'build' on openSUSE/SLE and 'obs-build' on all other distros
- 1.4.4
- Command-line:
- Fix autocompletion for new locations

View File

@ -43,7 +43,7 @@
%endif
Name: osc
Version: 1.4.4
Version: 1.5.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.4.4')
__version__ = git_version.get_version('1.5.0')
# vim: sw=4 et