From 0b4f39448da4bfa65a412d8c2567faa030f28383 Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Mon, 3 Feb 2025 16:39:32 +0100 Subject: [PATCH] release 1.12.0 --- NEWS | 16 ++++++++++++++++ contrib/osc.spec | 2 +- osc/__init__.py | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index cad45489..2616290e 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,19 @@ +- 1.12.0 + - Command-line: + - Add 'git-obs pr' command + - Add 'git-obs api' command for making arbitrary API calls + - Change 'git-obs' to use owner/repo[#pull] arguments consistently + - Change 'git-obs repo clone' command to store ssh command in core.sshCommand git config option + - Fix 'request list --interactive' command that wasn't showing request forward prompt when message was part of the state change + - Library: + - Avoid fetching _scmsync.obsinfo when scmsync url contains 'noobsinfo' query parameter + - Fix ssh key priority in 'git-obs repo clone' command + - Fix loading config entries with underscores instead of dashes in the keys + - Fix detecting binary files + - Fix diff highligting + - Connection: + - Implement retries in 'git-obs' + - 1.11.1 - Command-line: - Fix 'linkpac' command for projects with a project link diff --git a/contrib/osc.spec b/contrib/osc.spec index d4d56378..82c9c573 100644 --- a/contrib/osc.spec +++ b/contrib/osc.spec @@ -51,7 +51,7 @@ %endif Name: osc -Version: 1.11.1 +Version: 1.12.0 Release: 0 Summary: Command-line client for the Open Build Service License: GPL-2.0-or-later diff --git a/osc/__init__.py b/osc/__init__.py index 49811527..085df6b4 100644 --- a/osc/__init__.py +++ b/osc/__init__.py @@ -13,7 +13,7 @@ __all__ = [ from .util import git_version -__version__ = git_version.get_version('1.11.1') +__version__ = git_version.get_version('1.12.0') # vim: sw=4 et