浏览代码

Merge branch 'pre-0.9.3' into develop

Oz N Tiram 8 年之前
父节点
当前提交
24a5172517
共有 3 个文件被更改,包括 7 次插入2 次删除
  1. 5 0
      ChangeLog
  2. 1 1
      pwman/__init__.py
  3. 1 1
      setup.py

+ 5 - 0
ChangeLog

@@ -1,3 +1,8 @@
+2017-Januar-15 Oz Nahum Tiram <oz.tiram@gmail.com>
+	* Release 0.9.3
+	* Fix multiple issues with SQLite on Windows
+	* Fix deletion of nodes
+
 2016-November-5 Oz Nahum Tiram <oz.tiram@gmail.com>
 	* Release 0.9.2
 	* Fix time out expiration

+ 1 - 1
pwman/__init__.py

@@ -41,7 +41,7 @@ appname = "pwman3"
 try:
     version = pkg_resources.get_distribution('pwman3').version
 except pkg_resources.DistributionNotFound:  # pragma: no cover
-    version = "0.9.1"
+    version = "0.9.3"
 
 
 class PkgMetadata(object):

+ 1 - 1
setup.py

@@ -327,7 +327,7 @@ packages = find_packages(exclude=['tests', 'pwman/ui/templates'])
 
 
 setup(name='pwman3',
-      version='0.9.2',
+      version='0.9.3',
       description=("a command line password manager with support for multiple"
                    " databases."),
       long_description=long_description,