diff --git a/NEWS b/NEWS index 7263d404..db0cbd42 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,8 @@ 0.151 + - fixed shell command injection via crafted _service files (CVE-2015-0778) - fix times when data comes from OBS backend - support updateing the link in target package for submit requests + - various minor bugfixes 0.150 - support local builds using builenv (for same build environment as a former build) diff --git a/osc/core.py b/osc/core.py index e8cebbc0..8b07b5f9 100644 --- a/osc/core.py +++ b/osc/core.py @@ -5,7 +5,7 @@ from __future__ import print_function -__version__ = '0.150git' +__version__ = '0.151' # __store_version__ is to be incremented when the format of the working copy # "store" changes in an incompatible way. Please add any needed migration @@ -3938,7 +3938,6 @@ def create_submit_request(apiurl, if src_package: package = """package="%s" """ % (src_package) options_block = "" - print("ASD", dst_updatelink) if src_update: options_block += """%s""" % (src_update) if dst_updatelink: