Skip to content

Commit

Permalink
Changes for 0.4.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
vsajip committed May 20, 2022
1 parent e9b7ea3 commit 3082fa8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion README.rst
Expand Up @@ -66,11 +66,17 @@ Change log
.. note:: GCnn refers to an issue nn on Google Code.


0.4.9 (future)
0.5.0 (future)
--------------

Released: Not yet.


0.4.9
-----

Released: 2022-05-20

* Fixed #161: Added a status attribute to the returned object from gen_key() which
is set to 'ok' if a key was successfully created, or 'key not created' if that
was reported by gpg, or None in any other case.
Expand Down
4 changes: 2 additions & 2 deletions gnupg.py
Expand Up @@ -42,9 +42,9 @@
import sys
import threading

__version__ = '0.4.9.dev0'
__version__ = '0.4.9'
__author__ = 'Vinay Sajip'
__date__ = '$24-Nov-2021 09:13:33$'
__date__ = '$20-May-2022 09:01:43$'

STARTUPINFO = None
if os.name == 'nt': # pragma: no cover
Expand Down
2 changes: 1 addition & 1 deletion test_gnupg.py
Expand Up @@ -30,7 +30,7 @@ def skipIf(condition, message):
import gnupg

__author__ = 'Vinay Sajip'
__date__ = '$24-Nov-2021 09:14:09$'
__date__ = '$20-May-2022 09:02:15$'

ALL_TESTS = True

Expand Down

0 comments on commit 3082fa8

Please sign in to comment.