diff --git a/pyaes/__init__.py b/pyaes/__init__.py index d661ab4..943c709 100644 --- a/pyaes/__init__.py +++ b/pyaes/__init__.py @@ -46,7 +46,7 @@ # https://www.dlitz.net/software/pycrypto/ -VERSION = [1, 2, 0] +VERSION = [1, 3, 0] from .aes import AES, AESModeOfOperationCTR, AESModeOfOperationCBC, AESModeOfOperationCFB, AESModeOfOperationECB, AESModeOfOperationOFB, AESModesOfOperation, Counter from .blockfeeder import decrypt_stream, Decrypter, encrypt_stream, Encrypter diff --git a/setup.py b/setup.py index 378c66d..5ef6142 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ for API reference and details.''' setup(name = 'pyaes', - version = '1.2.0', + version = '1.3.0', description = 'Pure-Python Implementation of the AES block-cipher and common modes of operation', long_description = LONG_DESCRIPTION, author = 'Richard Moore',