From 269acdbe9e5007bb09e2ce151df5bd2affc483df Mon Sep 17 00:00:00 2001 From: Richard Moore Date: Thu, 24 Jul 2014 23:48:23 -0400 Subject: [PATCH] Version bump for *_stream. --- pyaes/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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',