From 6c84b4233349604e008ae922ffa4c7d5767fb80e Mon Sep 17 00:00:00 2001 From: "Dr. Peter Poeml" Date: Tue, 14 Aug 2007 11:49:43 +0000 Subject: [PATCH] bump version to 0.98 --- NEWS | 21 ++++++++------------- osc/core.py | 4 ++-- 2 files changed, 10 insertions(+), 15 deletions(-) diff --git a/NEWS b/NEWS index 75e6bcd1..9315e90b 100644 --- a/NEWS +++ b/NEWS @@ -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: diff --git a/osc/core.py b/osc/core.py index eecd6227..b0e90e29 100755 --- a/osc/core.py +++ b/osc/core.py @@ -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')