diff --git a/NEWS b/NEWS index 230c33c6..45edd0dd 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,10 @@ 0.165.1 - fix oscssl "urldefrag is not defined error" + - osc release command now python3 compatible + - add more decode logic in get_commitlog + - osc add in compressed mode now works with python3 + - osc getbinaries now prints the output instead of + using the quiet mode as a default 0.165.0 - full python3 compatibility diff --git a/osc/core.py b/osc/core.py index 0683d0b8..990291e4 100644 --- a/osc/core.py +++ b/osc/core.py @@ -5,7 +5,7 @@ from __future__ import print_function -__version__ = '0.166.git' +__version__ = '0.165.1' # __store_version__ is to be incremented when the format of the working copy # "store" changes in an incompatible way. Please add any needed migration