Преглед на файлове

Version 0.5

Finally, drop support for old database format in SQLite.
Multiple bug fixes.
Better testing.
oz123 преди 11 години
родител
ревизия
507a84d5a3
променени са 3 файла, в които са добавени 9 реда и са изтрити 3 реда
  1. 7 0
      ChangeLog
  2. 1 1
      pwman/__init__.py
  3. 1 2
      scripts/pwman3

+ 7 - 0
ChangeLog

@@ -1,3 +1,10 @@
+2014-Apr-8  Oz Nahum <nahumoz@gmail.com>
+    * Version 0.5. 
+	* Multiple bug fixes. 
+	* 95% test coverage. 
+	* Drop supprt for old database format that uses cPickle.
+	  Everything is stored in SQLite as encrypted strings.
+
 2014-Feb-27 Oz Nahum <nahumoz@gmail.com>
 	* Version 0.4.5 
 	* Fix for old database format

+ 1 - 1
pwman/__init__.py

@@ -25,7 +25,7 @@ appname = "Pwman3"
 try:
     version = pkg_resources.get_distribution('pwman3').version
 except pkg_resources.DistributionNotFound:  # pragma: no cover
-    version = "0.5-dev"
+    version = "0.5"
 
 website = "http://github.com/pwman3/pwman3"
 author = "Oz Nahum"

+ 1 - 2
scripts/pwman3

@@ -31,8 +31,7 @@ _saveconfig = True
 _db_warn = ("\n*** WARNNING: You are using the old database format"
             " which is insecure."
             " Please upgrade to the new database "
-            " format. Do note: support for this DB format will be dropped in"
-            " v0.5. This  database format is on hold. No bugs are fixead"
+            " format."
             " Check the help (pwman3 -h) or look at the manpage which"
             " explains how to proceed. ***")