Skip to content

Commit

Permalink
Changes for 0.3.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
vsajip committed Sep 24, 2015
1 parent 338b60d commit 956c1a4
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
7 changes: 6 additions & 1 deletion README.rst
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -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
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions gnupg.py
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Expand Up @@ -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"
]
Expand Down
2 changes: 1 addition & 1 deletion test_gnupg.py
Expand Up @@ -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

Expand Down

0 comments on commit 956c1a4

Please sign in to comment.