1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-02-15 23:07:18 +01:00

release 1.12.1

This commit is contained in:
Daniel Mach 2025-02-13 14:56:37 +01:00
parent 7b15faf53d
commit 718bc8c0db
3 changed files with 13 additions and 2 deletions

11
NEWS
View File

@ -1,3 +1,14 @@
- 1.12.1
- Command-line:
- Improve 'maintenancerequest' command to inherit description from superseded request
- Library:
- Tell the build script to disable repos/containers handling for normal builds
- Improve detecting git packages, use .osc metadata from project in parent directory
- Fix retrieving apiurl from git repositories in get_api_url() in the command-line code
- Fix typo in core.binary() that caused text files being detected as binary
- Improve core.binary() by always considering data that contains \0 binary
- Fix assembling scm_url when scmsync_obsinfo.revision is None
- 1.12.0
- Command-line:
- Add 'git-obs pr' command

View File

@ -51,7 +51,7 @@
%endif
Name: osc
Version: 1.12.0
Version: 1.12.1
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.12.0')
__version__ = git_version.get_version('1.12.1')
# vim: sw=4 et