diff --git a/NEWS b/NEWS index 451fb266..84c72054 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,21 @@ 0.176.0 + - add -F option to osc submitreq - add --verbose option to build command + - fix getbinaries command to fetch also multibuild packages + - fix getbinaries -M/--multibuild-package option usage + - skip fetching metadata and logs in the getbinaries command + - do not download a bdep with a hdrmd5 from the api by default + - re-download file from API when hdrmd5 doesn't match + - honor --download-api-only option + - remove Windows from the supported operating systems + - fix license in setup.py + - add py3.10 and py3.11 to the classifiers in setup.py + - use the latest version of COPYING file from gnu.org + - fix crash on terminal resize during download + - do not fail with a traceback in case of a config error + - preserve oscrc symlink when writing conf file + - escape % character in binary download URLs + - fix printing paths to built debian packages 0.175.0 - do not crash when running "osc search --binary --verbose foo" diff --git a/osc/core.py b/osc/core.py index 9ed2c8d8..bdb6cebe 100644 --- a/osc/core.py +++ b/osc/core.py @@ -5,7 +5,7 @@ from __future__ import print_function -__version__ = '0.176.git' +__version__ = '0.176.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