Skip to content

Commit

Permalink
Changes for 0.4.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
vsajip committed Jan 24, 2019
1 parent 1a4db06 commit e2b2d82
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
8 changes: 7 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,17 @@ Change log

.. note:: GCnn refers to an issue nn on Google Code.

0.4.4 (future)
0.4.5 (future)
--------------

Released: Not yet.


0.4.4
-----

Released: 2019-01-24

* Fixed #108: Changed how any return value from the ``on_data`` callable is
processed. In earlier versions, the return value was ignored. In this version,
if the return value is ``False``, the data received from ``gpg`` is not
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
# The short X.Y version.
version = '0.4'
# The full version, including alpha/beta/rc tags.
release = '0.4.4.dev0'
release = '0.4.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -227,7 +227,7 @@
epub_title = u'python-gnupg'
epub_author = u'Vinay Sajip'
epub_publisher = u'Vinay Sajip'
epub_copyright = u'2017, Vinay Sajip'
epub_copyright = u'2019, Vinay Sajip'

# The language of the text. It defaults to the language option
# or en if the language is not set.
Expand Down
4 changes: 2 additions & 2 deletions gnupg.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
A unittest harness (test_gnupg.py) has also been added.
"""

__version__ = "0.4.4.dev0"
__version__ = "0.4.4"
__author__ = "Vinay Sajip"
__date__ = "$13-Jun-2018 12:11:43$"
__date__ = "$24-Jan-2019 xx:yy:zz$"

try:
from io import StringIO
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@
},
"source_url": "https://pypi.io/packages/source/p/python-gnupg/python-gnupg-0.4.4.tar.gz",
"summary": "A wrapper for the Gnu Privacy Guard (GPG or GnuPG)",
"version": "0.4.4.dev0"
"version": "0.4.4"
},
"metadata": {
"description": "This module allows easy access to GnuPG's key management, encryption and signature functionality from Python programs. It is intended for use with Python 2.4 or greater.",
"name": "python-gnupg",
"platform": "No particular restrictions",
"version": "0.4.4.dev0"
"version": "0.4.4"
},
"source": {
"modules": [
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
long_description = "This module allows easy access to GnuPG's key \
management, encryption and signature functionality from Python programs. \
It is intended for use with Python 2.4 or greater.",
license="""Copyright (C) 2008-2018 by Vinay Sajip. All Rights Reserved. See LICENSE.txt for license.""",
license="""Copyright (C) 2008-2019 by Vinay Sajip. All Rights Reserved. See LICENSE.txt for license.""",
version=version,
author="Vinay Sajip",
author_email="vinay_sajip@red-dove.com",
Expand All @@ -33,6 +33,7 @@
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
]
Expand Down

0 comments on commit e2b2d82

Please sign in to comment.