Parcourir la source

fix broken usability of old db format

add notice about depreciation and bump version
oz123 il y a 11 ans
Parent
commit
a7951a1a58
3 fichiers modifiés avec 7 ajouts et 3 suppressions
  1. 5 1
      ChangeLog
  2. 1 1
      pwman/__init__.py
  3. 1 1
      pwman/ui/cli.py

+ 5 - 1
ChangeLog

@@ -1,9 +1,13 @@
+2013-09-25 Oz Nahum <nahumoz@gmail.com>
+	* Version 0.4.1 
+	* Fix broken usability with old database format.
+
 2013-09-21 Oz Nahum <nahumoz@gmail.com>
 	* Version 0.4.0 
 	* Multiple bug fixes 
 	* Most changes are developer related (e.g. add unit testing)
 	* Nodes data was writen to DB with cPickle.dumps, hence
-	loading the data was done cPickle.loads. New node
+	  loading the data was done cPickle.loads. New node
 		are now saved as encrypted string without cPickle.
 		This makes Pwman3 a bit more secure.
 

+ 1 - 1
pwman/__init__.py

@@ -20,7 +20,7 @@
 #============================================================================
 
 appname = "Pwman3"
-version = "0.4.0"
+version = "0.4.1"
 website = "http://github.com/pwman3/pwman3"
 author = "Oz Nahum"
 authoremail = "nahumoz@gmail.com"

+ 1 - 1
pwman/ui/cli.py

@@ -716,7 +716,7 @@ pwman> n {'leetify':False, 'numerics':True}"""
         _dbwarning = "\n*** WARNNING: You are using the old database format" \
             + " which is unsecure." \
             + " It's highly recommended to switch to the new database " \
-            + "format." \
+            + "format. Do note: support for this DB format will be dropped in v0.5." \
             + " Check the help (pwman3 -h) or look at the manpage which" \
             + " explains how to proceed. ***"