1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-26 09:56:13 +01:00

bump version to 0.98

This commit is contained in:
Dr. Peter Poeml 2007-08-14 11:49:43 +00:00
parent da6f6c4a8a
commit 6c84b42333
2 changed files with 10 additions and 15 deletions

21
NEWS
View File

@ -1,19 +1,14 @@
since 0.97:
0.98:
- added initial search support
- new meta command, replacing editmeta, editprj, createprj,
editpac, createpac, edituser
- allow editing patterns (osc meta pattern -e)
- show helpful xml error messages if broken metadata is uploaded
- new importfromsrcpkg command, to import a package src.rpm from file or URL
- new req command, to issue arbitrary requests to the API
- initial support for commit messages (ci -m/-F)
- implementing a log command to review the commit log
- renamed previous "log" command to "buildlog" (short: bl)
- initial support for commit messages (ci -m/-F)
NOTE: if -m is used, osc uses a different mode of uploading
files and commit them, namely the way which is currently
documented in the api. So far, osc was uploading each file
separately through the old backward compatible way. This way
of committing can also be forced with do_commits = 1 in
.oscrc.
- new meta command, replacing editmeta, editprj, createprj,
editpac, createpac, edituser, pattern
- added search support
- show helpful xml error messages if broken metadata is uploaded
0.97:

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.97'
__version__ = '0.98'
import os
import sys
@ -868,7 +868,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']:
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']:
# version is fine, no migration needed
f = open(versionfile, 'w')
f.write(__version__ + '\n')