1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-11-09 22:36:14 +01:00

bump version to 0.99; update NEWS file

This commit is contained in:
Dr. Peter Poeml 2007-10-30 11:47:06 +00:00
parent db692ce10e
commit 420b9cf25c
2 changed files with 14 additions and 2 deletions

12
NEWS
View File

@ -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:
- new maintainer command, to list the maintainers of a project or package

View File

@ -5,7 +5,7 @@
# and distributed under the terms of the GNU General Public Licence,
# either version 2, or (at your option) any later version.
__version__ = '0.98'
__version__ = '0.99'
import os
import sys
@ -867,7 +867,7 @@ def check_store_version(dir):
sys.exit(1)
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
f = open(versionfile, 'w')
f.write(__version__ + '\n')