mirror of
https://github.com/openSUSE/osc.git
synced 2025-02-04 02:26:16 +01:00
bump version to 0.99; update NEWS file
This commit is contained in:
parent
db692ce10e
commit
420b9cf25c
12
NEWS
12
NEWS
@ -1,3 +1,15 @@
|
|||||||
|
0.99:
|
||||||
|
|
||||||
|
- wipebinaries: added --build-failed and --broken [#335498]
|
||||||
|
- deleteprj: enabled this command, as the backend now supports it
|
||||||
|
- maintainer:
|
||||||
|
- added --verbose option
|
||||||
|
- added functionality to add/remove users from a project/package
|
||||||
|
- print the list of URL to try, when in HTTP debug mode
|
||||||
|
- build: allow to use lbuild, a compatible replacement for build
|
||||||
|
- do not create dirs for non-existing packages during checkout [#259711]
|
||||||
|
|
||||||
|
|
||||||
0.98:
|
0.98:
|
||||||
|
|
||||||
- new maintainer command, to list the maintainers of a project or package
|
- new maintainer command, to list the maintainers of a project or package
|
||||||
|
@ -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.98'
|
__version__ = '0.99'
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
@ -867,7 +867,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', '0.96', '0.97']:
|
if v in ['0.2', '0.3', '0.4', '0.5', '0.6', '0.7', '0.8', '0.9', '0.95', '0.96', '0.97', '0.98']:
|
||||||
# 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