Jelajahi Sumber

Bump version to 0.9.5

Oz N Tiram 7 tahun lalu
induk
melakukan
85d087003d
3 mengubah file dengan 13 tambahan dan 3 penghapusan
  1. 8 0
      ChangeLog
  2. 1 1
      pwman/__init__.py
  3. 4 2
      setup.py

+ 8 - 0
ChangeLog

@@ -1,3 +1,11 @@
+2017-December-5 Oz Nahum Tiram <oz.tiram@gmail.com>
+	* Release 0.9.5
+	* Use urllib.request instead of http.client.HTTPSconnection
+
+2017-December-5 Oz Nahum Tiram <oz.tiram@gmail.com>
+	* Release 0.9.4
+	* Use http.client.HTTPSconnection
+
 2017-Januar-15 Oz Nahum Tiram <oz.tiram@gmail.com>
 	* Release 0.9.3
 	* Fix multiple issues with SQLite on Windows

+ 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.4"
+    version = "0.9.5"
 
 
 class PkgMetadata(object):

+ 4 - 2
setup.py

@@ -64,7 +64,8 @@ class TestCommand(Command):
         pass
 
     def run(self):
-        import sys, subprocess
+        import sys
+        import subprocess
 
         raise SystemExit(
             subprocess.call([sys.executable,
@@ -307,6 +308,7 @@ class ManPageCreator(object):
         return '.SH NAME\n%s \\- %s\n' % (distribution.get_name(),
                                           distribution.get_description())
 
+
 sys.path.insert(0, os.getcwd())
 
 
@@ -327,7 +329,7 @@ packages = find_packages(exclude=['tests', 'pwman/ui/templates'])
 
 
 setup(name='pwman3',
-      version='0.9.4',
+      version='0.9.5',
       description=("a command line password manager with support for multiple"
                    " databases."),
       long_description=long_description,