1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-11-12 15:46:15 +01:00

release 1.9.2

This commit is contained in:
Daniel Mach 2024-09-23 20:37:43 +02:00
parent 50a203fedb
commit f567060044
3 changed files with 15 additions and 2 deletions

13
NEWS
View File

@ -1,3 +1,16 @@
- 1.9.2
- Command-line:
- Fix 'resolved' command to skip subdirectories in package checkouts
- Fix 'comment' command to resolve project name
- Implement meter.SimpleTextMeter that prints what's being downloaded
- Connection:
- Use configured 'http_headers' in HTTP requests
- Library:
- Fix storing _buildinfo and _buildconfig files in .osc rather than among the source files
- Use findtext() instead of find().text
- Spec:
- Recommend python3-zstandard to support opening control.tar.zst
- 1.9.1
- Command-line:
- Add 'createrequest release' subcommand

View File

@ -49,7 +49,7 @@
%endif
Name: osc
Version: 1.9.1
Version: 1.9.2
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.9.1')
__version__ = git_version.get_version('1.9.2')
# vim: sw=4 et