diff options
-rw-r--r-- | Doc/pycrypt.rst | 2 | ||||
-rw-r--r-- | lib/Crypto/__init__.py | 4 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Doc/pycrypt.rst b/Doc/pycrypt.rst index 4b2e488..e9bd6a6 100644 --- a/Doc/pycrypt.rst +++ b/Doc/pycrypt.rst @@ -2,7 +2,7 @@ Python Cryptography Toolkit ==================================== -**Version 2.6.1** +**Version 2.7a1** The Python Cryptography Toolkit describes a package containing various cryptographic modules for the Python programming language. This diff --git a/lib/Crypto/__init__.py b/lib/Crypto/__init__.py index 04f30c8..2834731 100644 --- a/lib/Crypto/__init__.py +++ b/lib/Crypto/__init__.py @@ -43,9 +43,9 @@ Crypto.Util __all__ = ['Cipher', 'Hash', 'Protocol', 'PublicKey', 'Util', 'Signature', 'IO'] -__version__ = '2.6.1' # See also below and setup.py +__version__ = '2.7a1' # See also below and setup.py __revision__ = "$Id$" # New software should look at this instead of at __version__ above. -version_info = (2, 6, 1, 'final', 0) # See also above and setup.py +version_info = (2, 7, 0, 'alpha', 1) # See also above and setup.py @@ -381,7 +381,7 @@ class TestCommand(Command): sub_commands = [ ('build', None) ] kw = {'name':"pycrypto", - 'version':"2.6.1", # See also: lib/Crypto/__init__.py + 'version':"2.7a1", # See also: lib/Crypto/__init__.py 'description':"Cryptographic modules for Python.", 'author':"Dwayne C. Litzenberger", 'author_email':"dlitz@dlitz.net", |