diff options
| -rw-r--r-- | CHANGELOG.md | 2 | ||||
| -rw-r--r-- | rsa/__init__.py | 4 | ||||
| -rwxr-xr-x | setup.py | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d6fbe2..9803f9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Python-RSA changelog -## Version 4.7.2 - in development +## Version 4.7.2 - released 2021-02-24 - Fix picking/unpickling issue introduced in 4.7 ([#173](https://github.com/sybrenstuvel/python-rsa/issues/173) diff --git a/rsa/__init__.py b/rsa/__init__.py index a4a4a15..5b1de8c 100644 --- a/rsa/__init__.py +++ b/rsa/__init__.py @@ -26,8 +26,8 @@ from rsa.pkcs1 import encrypt, decrypt, sign, verify, DecryptionError, \ VerificationError, find_signature_hash, sign_hash, compute_hash __author__ = "Sybren Stuvel, Barry Mead and Yesudeep Mangalapilly" -__date__ = '2021-02-15' -__version__ = '4.7.1' +__date__ = '2021-02-24' +__version__ = '4.7.2' # Do doctest if we're run directly if __name__ == "__main__": @@ -25,7 +25,7 @@ with open('README.md', encoding='utf-8') as f: if __name__ == '__main__': setup(name='rsa', - version='4.7.1', + version='4.7.2', description='Pure-Python RSA implementation', long_description=long_description, long_description_content_type='text/markdown', |
