mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-14 16:26:13 +01:00
bump version (0.97); update NEWS file
This commit is contained in:
parent
1187333707
commit
4d612264e4
17
NEWS
17
NEWS
@ -1,4 +1,19 @@
|
|||||||
since 0.96:
|
since 0.97:
|
||||||
|
[...]
|
||||||
|
|
||||||
|
|
||||||
|
0.97:
|
||||||
|
- added initial revision handling:
|
||||||
|
- extended "osc co prj pac" to checkout a specific revision of pac
|
||||||
|
- extended "osc up" to update to a specific revision
|
||||||
|
- extended "osc diff" to diff the working copy against a
|
||||||
|
specific revision on the server. NOTE: comparing two
|
||||||
|
server-side revisions (osc diff -r 11:12) is currently
|
||||||
|
not supported!
|
||||||
|
- load subcommands from /var/lib/osc-plugins/ or ~/.osc-plugins/
|
||||||
|
- updatepacmetafromspec scans for spec files automatically. Added --specfile option to updatepacmetafromspec.
|
||||||
|
- wipebinaries: allow to wipe all binaries of packages for which the build is disabled
|
||||||
|
- addremove: ignore foo.rXX, foo.mine for files which are in 'C' state
|
||||||
- ls: add verbose option to print extra information for packages
|
- ls: add verbose option to print extra information for packages
|
||||||
- for all server-side commands, allow arguments "foo/bar" instead of "foo bar"
|
- for all server-side commands, allow arguments "foo/bar" instead of "foo bar"
|
||||||
- new wipebinaries and abortbuild commands, by courtesy of Marcus Huewe
|
- new wipebinaries and abortbuild commands, by courtesy of Marcus Huewe
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
# and distributed under the terms of the GNU General Public Licence,
|
# and distributed under the terms of the GNU General Public Licence,
|
||||||
# either version 2, or (at your option) any later version.
|
# either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
__version__ = '0.96'
|
__version__ = '0.97'
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
@ -821,7 +821,7 @@ def check_store_version(dir):
|
|||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
if v != __version__:
|
if v != __version__:
|
||||||
if v in ['0.2', '0.3', '0.4', '0.5', '0.6', '0.7', '0.8', '0.9', '0.95']:
|
if v in ['0.2', '0.3', '0.4', '0.5', '0.6', '0.7', '0.8', '0.9', '0.95', '0.96']:
|
||||||
# version is fine, no migration needed
|
# version is fine, no migration needed
|
||||||
f = open(versionfile, 'w')
|
f = open(versionfile, 'w')
|
||||||
f.write(__version__ + '\n')
|
f.write(__version__ + '\n')
|
||||||
|
Loading…
Reference in New Issue
Block a user