From a7914c6755fb96d4a74d3271a7c64f83cc150372 Mon Sep 17 00:00:00 2001 From: "rmlibre@riseup.net" Date: Wed, 18 Dec 2019 21:31:50 -0500 Subject: [PATCH] bump version to v0.5.0 --- CHANGES.rst | 12 ++++++++++++ README.rst | 11 +++++++++++ setup.py | 2 +- tiny_gnupg/__init__.py | 2 +- 4 files changed, 25 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 1816374..657b2fd 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -57,6 +57,18 @@ ============= +Changes for version 0.5.0 +========================= + +Minor Changes +------------- + +- Removed coverage.py html results. They are too big, and reveal device + specific information. + + + + Changes for version 0.4.9 ========================= diff --git a/README.rst b/README.rst index ff3028a..410e60b 100644 --- a/README.rst +++ b/README.rst @@ -347,6 +347,17 @@ After a user no longer considers a key useful, or wants to dissociate from the k ============= +Changes for version 0.5.0 +========================= + +Minor Changes +------------- + +- Removed coverage.py html results. They are too big, and reveal device + specific information. + + + Changes for version 0.4.9 ========================= diff --git a/setup.py b/setup.py index 2bfeb54..023610e 100755 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ setup( name="tiny_gnupg", license="GPLv3", - version="0.4.9", + version="0.5.0", description=description, long_description=long_description, url="https://github.com/rmlibre/tiny_gnupg", diff --git a/tiny_gnupg/__init__.py b/tiny_gnupg/__init__.py index 9584d07..63fb7aa 100644 --- a/tiny_gnupg/__init__.py +++ b/tiny_gnupg/__init__.py @@ -8,6 +8,6 @@ # All rights reserved. # -__version__ = "0.4.9" +__version__ = "0.5.0" from .tiny_gnupg import GnuPG, run, __all__