summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDwayne C. Litzenberger <dlitz@dlitz.net>2009-08-18 20:18:29 -0400
committerDwayne C. Litzenberger <dlitz@dlitz.net>2009-08-28 12:09:15 -0400
commitb2e5f03eaccb5c9a111b51460e1a5cc25f47d7ac (patch)
tree1788f92a4e28e4cb94ae148845e13615f350910a
parent812e01736ca936124daa36d15a4159e92a43b9db (diff)
downloadpycrypto-b2e5f03eaccb5c9a111b51460e1a5cc25f47d7ac.tar.gz
Bump to version 2.1.0a2
-rw-r--r--lib/Crypto/__init__.py4
-rw-r--r--setup.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/Crypto/__init__.py b/lib/Crypto/__init__.py
index 18bf625..88044c4 100644
--- a/lib/Crypto/__init__.py
+++ b/lib/Crypto/__init__.py
@@ -38,9 +38,9 @@ Crypto.Util Various useful modules and functions (long-to-string
__all__ = ['Cipher', 'Hash', 'Protocol', 'PublicKey', 'Util']
-__version__ = '2.1.0alpha1'
+__version__ = '2.1.0a2' # See also below and setup.py
__revision__ = "$Id$"
# New software should look at this instead of at __version__ above.
-version_info = (2, 1, 0, 'alpha', 1)
+version_info = (2, 1, 0, 'alpha', 2) # See also above and setup.py
diff --git a/setup.py b/setup.py
index f001248..bb69fad 100644
--- a/setup.py
+++ b/setup.py
@@ -263,7 +263,7 @@ class TestCommand(Command):
self.announce("running extended self-tests")
kw = {'name':"pycrypto",
- 'version':"2.1.0alpha1",
+ 'version':"2.1.0a2", # See also: lib/Crypto/__init__.py
'description':"Cryptographic modules for Python.",
'author':"A.M. Kuchling",
'author_email':"amk@amk.ca",