From c4473784fbca5a1e3b030be92f705994a8a256a7 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Wed, 24 Nov 2021 09:15:06 +0000 Subject: [PATCH] Changes for 0.4.8. --- README.rst | 7 ++++++- gnupg.py | 4 ++-- test_gnupg.py | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index d072768..558bb3e 100644 --- a/README.rst +++ b/README.rst @@ -64,11 +64,16 @@ Change log .. note:: GCnn refers to an issue nn on Google Code. -0.4.8 (future) +0.4.9 (future) -------------- Released: Not yet. +0.4.8 +----- + +Released: 2021-11-24 + * Fixed #147: Return gpg's return code in all result instances. * Fixed #152: Add check for invalid file objects. diff --git a/gnupg.py b/gnupg.py index 243d415..8d16739 100644 --- a/gnupg.py +++ b/gnupg.py @@ -32,9 +32,9 @@ A unittest harness (test_gnupg.py) has also been added. """ -__version__ = "0.4.8.dev0" +__version__ = "0.4.8" __author__ = "Vinay Sajip" -__date__ = "$11-Mar-2021 07:01:14$" +__date__ = "$24-Nov-2021 09:13:33$" try: from io import StringIO diff --git a/test_gnupg.py b/test_gnupg.py index f799195..3608f77 100644 --- a/test_gnupg.py +++ b/test_gnupg.py @@ -30,7 +30,7 @@ def skipIf(condition, message): import gnupg __author__ = "Vinay Sajip" -__date__ = "$11-Mar-2020 07:01:41$" +__date__ = "$24-Nov-2021 09:14:09$" ALL_TESTS = True