diff --git a/NEWS b/NEWS index 0e3d9243..fa312e28 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +0.182.1 + - Fix crash due to list having no copy attribute on python2 + - Fix crash in ssh auth when .ssh directory is missing + 0.182.0 - fix build on SLE12 / python 2.7 - SSH auth: Fix getallmatchingheaders() output to correspond with headers.get_all() diff --git a/osc/core.py b/osc/core.py index d3ed7019..139ff89e 100644 --- a/osc/core.py +++ b/osc/core.py @@ -7,7 +7,7 @@ from __future__ import print_function from .util import git_version -__version__ = git_version.get_version('0.182.0') +__version__ = git_version.get_version('0.182.1') # __store_version__ is to be incremented when the format of the working copy