From 26214f7dcdda43006790c91e4ca4cf6bf8ecec3b Mon Sep 17 00:00:00 2001 From: lethliel Date: Wed, 24 Jul 2019 15:13:39 +0200 Subject: [PATCH] release 0.165.3 --- NEWS | 2 ++ osc/core.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index bd36915e..16f4ef6d 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,6 @@ 0.165.3 + - switch to difflib.diff_bytes and sys.stdout.buffer.write for diffing. + This will fix all decoding issues with osc diff, osc ci and osc rq -d - fix osc ls -lb handling empty size and mtime - removed decoding on osc api command. - fixed broken TLS certificate handling (boo#1142518, CVE-2019-3685) diff --git a/osc/core.py b/osc/core.py index df497d4f..295597e8 100644 --- a/osc/core.py +++ b/osc/core.py @@ -5,7 +5,7 @@ from __future__ import print_function -__version__ = '0.165.3.git' +__version__ = '0.165.3' # __store_version__ is to be incremented when the format of the working copy # "store" changes in an incompatible way. Please add any needed migration