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__