Kaynağa Gözat

Bump version to 0.8.1

Oz N Tiram 8 yıl önce
ebeveyn
işleme
76186a0e38
3 değiştirilmiş dosya ile 10 ekleme ve 5 silme
  1. 8 3
      ChangeLog
  2. 1 1
      pwman/__init__.py
  3. 1 1
      setup.py

+ 8 - 3
ChangeLog

@@ -1,9 +1,14 @@
+2016-July-16 Oz Nahum Tiram <oz.tiram@gmail.com>
+	* Release 0.8.1 - Tag only, not on pypi
+	* Fixes of Python2 - Python3 compatablity issues
+	* Pure AES module converted with 2to3 to python3
+
 2016-July-O4 Oz Nahum Tiram <oz.tiram@gmail.com>
 	* Release 0.8.0
 	* Remove automatic build of man page. Explicit build is still possible.
-    * Add pure Python AES module
-    * On systems where Pycrypto is not available use own AES
-     
+	* Add pure Python AES module
+	* On systems where Pycrypto is not available use own AES
+
 2016-Jan-15 Oz Nahum Tiram <nahumoz@gmail.com>
 	* Release 0.7.4
 	* Fix typo in setup.py which affects windows installation

+ 1 - 1
pwman/__init__.py

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

+ 1 - 1
setup.py

@@ -336,7 +336,7 @@ Pwman3 supports MySQL, Postgresql and SQLite and even MongoDB"""
 
 
 setup(name='pwman3',
-      version='0.8.1-dev',
+      version='0.8.1',
       description = "a command line password manager with support for multiple databases.",
       long_description=long_description,
       author='Oz Nahum Tiram',