Skip to content

Commit 498440c

Browse files
committed
Changes for 0.5.3.
1 parent 429433b commit 498440c

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

README.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,18 +72,25 @@ Change log
7272
.. note:: GCnn refers to an issue nn on Google Code.
7373

7474

75-
0.5.3 (future)
75+
0.5.4 (future)
7676
--------------
7777

7878
Released: Not yet
7979

80+
81+
0.5.3
82+
-----
83+
84+
Released: 2024-09-20
85+
8086
* Fix #117: Add WKD (Web Key Directory) support for auto-locating keys. Thanks to Myzel394
8187
for the patch.
8288

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

8591
* Fix #239: Remove logging of decryption result.
8692

93+
8794
0.5.2
8895
-----
8996

gnupg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
import sys
4646
import threading
4747

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

5252
STARTUPINFO = None
5353
if os.name == 'nt': # pragma: no cover

test_gnupg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def skipIf(condition, message):
3535
import gnupg
3636

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

4040
ALL_TESTS = True
4141

0 commit comments

Comments
 (0)