From 70c1f2b7823ff9134cabe81f3510ce7f0c3db93d Mon Sep 17 00:00:00 2001 From: lethliel Date: Tue, 26 Apr 2022 09:48:53 +0200 Subject: [PATCH] release 0.177.0 --- NEWS | 13 ++++++++++++- osc/core.py | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 82ec9a63..c36e47b2 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,16 @@ 0.177.0 - - + - switch to python3 in osc-wrapper and make python3 explicit + - allow formatting of the sccache uri + - show repository state and details + - a few minor fixes and improvements in credentials handling + - order credential managers by priority + - kernel keyring is now supported as credential manager + - support regex based name filtering in core.get_prj_results() + - revision parsing parseRevisionOption(): cleanup and make logic consistent + - use sr_ids[0] for superseding (fixes issues with superseding requests + containing many packages + - download logs and metadata in subdirs named by packages when osc getbinaries + is issued on project level or in multibuild case 0.176.0 - add -F option to osc submitreq diff --git a/osc/core.py b/osc/core.py index 89931e6f..5e1d3196 100644 --- a/osc/core.py +++ b/osc/core.py @@ -5,7 +5,7 @@ from __future__ import print_function -__version__ = '0.177.git' +__version__ = '0.177.0' # __store_version__ is to be incremented when the format of the working copy # "store" changes in an incompatible way. Please add any needed migration