diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 0bcdfef..70feea9 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -13,6 +13,14 @@ Version 4.0 - in development - Ensured that PublicKey.save_pkcs1() and PrivateKey.save_pkcs1() always return bytes. - Dropped support for Python 2.6 + +Version 3.4.1 - released 2006-03-26 +---------------------------------------- + +- Included tests/private.pem in MANIFEST.in +- Included README.md and CHANGELOG.txt in MANIFEST.in + + Version 3.4 - released 2006-03-17 ---------------------------------------- diff --git a/MANIFEST.in b/MANIFEST.in index f41c924..1e64bd8 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,5 @@ include README.md +include CHANGELOG.txt include LICENSE include *.py recursive-include rsa *.py diff --git a/rsa/__init__.py b/rsa/__init__.py index bf48834..80a0c2c 100644 --- a/rsa/__init__.py +++ b/rsa/__init__.py @@ -29,7 +29,7 @@ VerificationError __author__ = "Sybren Stuvel, Barry Mead and Yesudeep Mangalapilly" -__date__ = "2016-03-17" +__date__ = "2016-03-26" __version__ = '4.0-alpha' # Do doctest if we're run directly