From 956c1a4e14641c8972289838a3ac940b1177e95c Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Thu, 24 Sep 2015 18:20:22 +0100 Subject: [PATCH] Changes for 0.3.8. --- README.rst | 7 ++++++- docs/conf.py | 4 ++-- docs/index.rst | 2 +- gnupg.py | 4 ++-- setup.py | 2 ++ test_gnupg.py | 2 +- 6 files changed, 14 insertions(+), 7 deletions(-) diff --git a/README.rst b/README.rst index 3cb8b52..8e0c387 100644 --- a/README.rst +++ b/README.rst @@ -54,11 +54,16 @@ Change log N.B: GCnn refers to an issue nn on Google Code. -0.3.8 (future) +0.3.9 (future) -------------- Released: Not yet +0.3.8 +----- + +Released: 2015-09-24 + * Fixed #22: handled ``PROGRESS`` messages during verification and signing. * Fixed #26: handled ``PINENTRY_LAUNCHED`` messages during verification, diff --git a/docs/conf.py b/docs/conf.py index 8a4ff40..1f3b541 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -38,7 +38,7 @@ # General information about the project. project = u'Python Wrapper for GnuPG' -copyright = u'2008-2014, Vinay Sajip' +copyright = u'2008-2015, Vinay Sajip' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -47,7 +47,7 @@ # The short X.Y version. version = '0.3' # The full version, including alpha/beta/rc tags. -release = '0.3.8.dev0' +release = '0.3.8' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index 3ae8bf5..3d848bc 100755 --- a/docs/index.rst +++ b/docs/index.rst @@ -8,7 +8,7 @@ ########################################### :Release: |release| -:Date: December 7, 2014 +:Date: September 24, 2015 .. module:: gnupg :synopsis: A Python wrapper for the GNU Privacy Guard (GnuPG) diff --git a/gnupg.py b/gnupg.py index f2cc97b..cfc6cb9 100644 --- a/gnupg.py +++ b/gnupg.py @@ -32,9 +32,9 @@ A unittest harness (test_gnupg.py) has also been added. """ -__version__ = "0.3.8.dev0" +__version__ = "0.3.8" __author__ = "Vinay Sajip" -__date__ = "$07-Dec-2014 18:46:17$" +__date__ = "$24-Sep-2015 18:03:55$" try: from io import StringIO diff --git a/setup.py b/setup.py index cc07c6e..936f1bb 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,8 @@ "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", "Operating System :: OS Independent", "Topic :: Software Development :: Libraries :: Python Modules" ] diff --git a/test_gnupg.py b/test_gnupg.py index 78ea24f..f7133b6 100644 --- a/test_gnupg.py +++ b/test_gnupg.py @@ -17,7 +17,7 @@ import gnupg __author__ = "Vinay Sajip" -__date__ = "$07-Dec-2014 18:46:40$" +__date__ = "$24-Sep-2015 18:05:15$" ALL_TESTS = True