summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2011-08-07 16:12:03 +0200
committerSybren A. Stüvel <sybren@stuvel.eu>2011-08-07 16:12:03 +0200
commit844aa2c605b46a19279ed65ab1ebc19e7992d949 (patch)
tree0ecdb6bbd2f317a3e2e18bd5e9bf01d1c97a38a6
parentcda89dd3570a35d6fd7517ff983a6661b4a39ea8 (diff)
downloadrsa-git-version-3.0.1.tar.gz
Bumped version to 3.0.1version-3.0.1
-rw-r--r--rsa/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsa/__init__.py b/rsa/__init__.py
index 3803d8f..f5e3a52 100644
--- a/rsa/__init__.py
+++ b/rsa/__init__.py
@@ -28,8 +28,8 @@ If you want to have a more secure implementation, use the functions from the
"""
__author__ = "Sybren Stuvel, Marloes de Boer, Ivo Tamboer, and Barry Mead"
-__date__ = "2011-08-05"
-__version__ = '3.0'
+__date__ = "2011-08-07"
+__version__ = '3.0.1'
from rsa.key import newkeys, PrivateKey, PublicKey
from rsa.pkcs1 import encrypt, decrypt, sign, verify, DecryptionError, \