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

release 1.2.0

This commit is contained in:
Daniel Mach 2023-07-14 11:08:24 +02:00
parent ba2488a702
commit c22aceb28d
3 changed files with 20 additions and 2 deletions

18
NEWS
View File

@ -1,3 +1,21 @@
- 1.2.0
- Command-line:
- Add 'repo' command and subcommands for managing repositories in project meta
- Extend 'browse' command to open requests in a web browser
- Add highlighting for 'osc diff' and similar commands
- Fix 'api' command to stream output to avoid running out of memory
- Fix printing utf-8 characters to stdout
- Connection:
- Fix ValueError: Cannot set verify_mode to CERT_NONE when check_hostname is enabled
- Authentication:
- Correctly handle passwords with utf-8 characters
- Library:
- Fix crash when submiting a SCM package which has no _link
- Fix local service execution of scmsync packages
- Detect target package by its full name, instead of assuming its origin is identical to the source package type
- Other:
- Spell openSUSE correctly
- 1.1.4
- Command-line:
- Change 'review list' command to display open requests (state: new, review, declined)

View File

@ -31,7 +31,7 @@
%endif
Name: osc
Version: 1.1.4
Version: 1.2.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.1.4')
__version__ = git_version.get_version('1.2.0')
# vim: sw=4 et