summaryrefslogtreecommitdiff
path: root/rsa/__init__.py
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2010-02-05 09:50:15 +0100
committerSybren A. Stüvel <sybren@stuvel.eu>2010-02-05 09:50:15 +0100
commitcc647c4afc3a0ceb0f2a810307f8e18855ffb9c9 (patch)
treefc41e2fda4d604cf45f791907bc6c9ecb8d56b53 /rsa/__init__.py
parent3a9e5969dcdfe23d966d84ed7dcb03dd23b710c7 (diff)
downloadrsa-git-cc647c4afc3a0ceb0f2a810307f8e18855ffb9c9.tar.gz
Bumped version to 1.3.2
Diffstat (limited to 'rsa/__init__.py')
-rw-r--r--rsa/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/rsa/__init__.py b/rsa/__init__.py
index f5ddef8..77db33e 100644
--- a/rsa/__init__.py
+++ b/rsa/__init__.py
@@ -6,7 +6,8 @@ signing and verification. Includes generating public and private keys.
"""
__author__ = "Sybren Stuvel, Marloes de Boer and Ivo Tamboer"
-__date__ = "2009-01-22"
+__date__ = "2010-02-05"
+__version__ = '1.3.2'
# NOTE: Python's modulo can return negative numbers. We compensate for
# this behaviour using the abs() function