summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. St?vel <sybren@stuvel.eu>2011-08-10 12:50:31 +0200
committerSybren A. St?vel <sybren@stuvel.eu>2011-08-10 12:50:31 +0200
commit3b4d7a8bbed6b30ba82518fc5aa9bac3e9c07e62 (patch)
tree654c4d2d8c833aea11f619e8c3d55c2ad75629cf
parentf7db34b27dd364ce837045938c25b52c4d3690de (diff)
downloadrsa-3b4d7a8bbed6b30ba82518fc5aa9bac3e9c07e62.tar.gz
Bumped version to 3.1-beta0
-rw-r--r--doc/conf.py5
-rw-r--r--rsa/__init__.py2
2 files changed, 4 insertions, 3 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 7cdbcf3..f2e66a7 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -12,6 +12,7 @@
# serve to show the default.
import sys, os
+import rsa
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
@@ -51,9 +52,9 @@ copyright = u'2011, Sybren A. Stüvel'
# built documents.
#
# The short X.Y version.
-version = '3.0'
+version = rsa.__version__
# The full version, including alpha/beta/rc tags.
-release = '3.0'
+release = rsa.__version__
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/rsa/__init__.py b/rsa/__init__.py
index f5e3a52..40144dc 100644
--- a/rsa/__init__.py
+++ b/rsa/__init__.py
@@ -29,7 +29,7 @@ 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.0.1'
+__version__ = '3.1-beta0'
from rsa.key import newkeys, PrivateKey, PublicKey
from rsa.pkcs1 import encrypt, decrypt, sign, verify, DecryptionError, \