Skip to content

Commit cda862f

Browse files
committed
Changes for 0.5.2.
1 parent bd69b80 commit cda862f

3 files changed

Lines changed: 13 additions & 6 deletions

File tree

README.rst

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

7474

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

7878
Released: Not yet
7979

80+
81+
0.5.2
82+
-----
83+
84+
Released: 2023-12-12
85+
8086
* Fix #228: Clarify documentation for encryption/decryption.
8187

8288
* Make I/O buffer size configurable via ``buffer_size`` attribute on a ``GPG`` instance.
8389

90+
8491
0.5.1
8592
-----
8693

gnupg.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@
4343
import sys
4444
import threading
4545

46-
__version__ = '0.5.2.dev0'
46+
__version__ = '0.5.2'
4747
__author__ = 'Vinay Sajip'
48-
__date__ = '$22-Jul-2023 16:36:40$'
48+
__date__ = '$12-Dec-2023 07:52:07$'
4949

5050
STARTUPINFO = None
5151
if os.name == 'nt': # pragma: no cover
@@ -1342,8 +1342,8 @@ def set_output_without_confirmation(self, args, output):
13421342

13431343
def is_valid_passphrase(self, passphrase):
13441344
"""
1345-
Confirm that the passphrase doesn't contain newline-type characters - it is passed in a pipe to `gpg`, and so not
1346-
checking could lead to spoofing attacks by passing arbitrary text after passphrase and newline.
1345+
Confirm that the passphrase doesn't contain newline-type characters - it is passed in a pipe to `gpg`,
1346+
and so not checking could lead to spoofing attacks by passing arbitrary text after passphrase and newline.
13471347
13481348
Args:
13491349
passphrase (str): The passphrase to test.

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__ = '$22-Jul-2023 16:37:02$'
38+
__date__ = '$12-Dec-2023 07:57:43$'
3939

4040
ALL_TESTS = True
4141

0 commit comments

Comments
 (0)