aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2016-01-13 10:16:13 +0100
committerSybren A. Stüvel <sybren@stuvel.eu>2016-01-21 11:12:33 +0100
commit6a1c2abf7502a75b7bb482ad0838cd4e46e26a71 (patch)
tree1f2ade46898e39867696d726f26afd0e4c7f67fd
parentcd42a861209517524dffe8c7f3dffb5fada7222e (diff)
downloadrsa-6a1c2abf7502a75b7bb482ad0838cd4e46e26a71.tar.gz
Bumped version to 3.3
-rw-r--r--rsa/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsa/__init__.py b/rsa/__init__.py
index 99fd668..c4654e9 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, Barry Mead and Yesudeep Mangalapilly"
-__date__ = "2015-11-05"
-__version__ = '3.2.3'
+__date__ = "2016-01-13"
+__version__ = '3.3'
from rsa.key import newkeys, PrivateKey, PublicKey
from rsa.pkcs1 import encrypt, decrypt, sign, verify, DecryptionError, \