summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2012-06-17 10:20:52 +0100
committerSybren A. Stüvel <sybren@stuvel.eu>2012-06-17 10:20:52 +0100
commitb17003ed6767bb27d32e3e4f1c6008f730c36e87 (patch)
tree49096d753c600943ae093630ec4acb2c56d31259
parentf8c57b20476458661e2ac96ad981110dcaf66254 (diff)
downloadrsa-git-b17003ed6767bb27d32e3e4f1c6008f730c36e87.tar.gz
Bumped version to 3.1
-rw-r--r--rsa/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/rsa/__init__.py b/rsa/__init__.py
index 40144dc..59d5a9d 100644
--- a/rsa/__init__.py
+++ b/rsa/__init__.py
@@ -27,9 +27,9 @@ 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-07"
-__version__ = '3.1-beta0'
+__author__ = "Sybren Stuvel, Barry Mead and Yesudeep Mangalapilly"
+__date__ = "2012-06-17"
+__version__ = '3.1'
from rsa.key import newkeys, PrivateKey, PublicKey
from rsa.pkcs1 import encrypt, decrypt, sign, verify, DecryptionError, \