diff --git a/NEWS b/NEWS index f29d156c..369bc468 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,13 @@ + +0.112: +important bugfix: +- osc deletepac: prevent recursive deletion of a whole project [bnc#458535] +- osc build: support more options: --icecream, --ccache, --with, --without +- osc build: --keep-pkgs also saves the src.rpm now +- osc build: small fix in debuginfo handling +- osc build: new armv7el arch for all binaries for up to ARMv7 EABI with VFP + + 0.111: - fix accidental truncation of .oscrc to 0 bytes - fix osc's ignorance of the revision option (-r) for expanded links @@ -7,6 +17,7 @@ - osc build: fixed detection of the build type (rpm or deb), after change in the buildinfo - osc build: build debuginfo packages if enabled in the project/package meta (this partly fixes #421390) + 0.110: - osc build: no working copy needed anymore when building a local package [bnc#431434] diff --git a/osc/core.py b/osc/core.py index d78e3395..f0aa60b5 100755 --- a/osc/core.py +++ b/osc/core.py @@ -7,7 +7,7 @@ # and distributed under the terms of the GNU General Public Licence, # either version 2, or (at your option) any later version. -__version__ = '0.111' +__version__ = '0.112' # __store_version__ is to be incremented when the format of the working copy # "store" changes in an incompatible way. Please add any needed migration # functionality to check_store_version().