Skip to content

Commit

Permalink
Changes for 0.5.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
vsajip committed Sep 20, 2024
1 parent 429433b commit 498440c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,25 @@ Change log
.. note:: GCnn refers to an issue nn on Google Code.


0.5.3 (future)
0.5.4 (future)
--------------

Released: Not yet


0.5.3
-----

Released: 2024-09-20

* Fix #117: Add WKD (Web Key Directory) support for auto-locating keys. Thanks to Myzel394
for the patch.

* Fix #237: Ensure local variable is initialized even when an exception occurs.

* Fix #239: Remove logging of decryption result.


0.5.2
-----

Expand Down
4 changes: 2 additions & 2 deletions gnupg.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
import sys
import threading

__version__ = '0.5.3.dev0'
__version__ = '0.5.3'
__author__ = 'Vinay Sajip'
__date__ = '$12-Dec-2023 07:52:07$'
__date__ = '$20-Sep-2024 17:22:27$'

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

__author__ = 'Vinay Sajip'
__date__ = '$12-Dec-2023 07:57:43$'
__date__ = '$20-Sep-2024 17:23:25$'

ALL_TESTS = True

Expand Down

0 comments on commit 498440c

Please sign in to comment.