From 6634ff69c15e605e4e65d538d665de436c2ac736 Mon Sep 17 00:00:00 2001 From: Richard Moore Date: Mon, 12 May 2014 18:46:59 -0400 Subject: [PATCH] Bumped the version to 1.0. Non-backward compatible change: segment-size is now in bytes. --- 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 49107be..3ae9b75 100644 --- a/pyaes/__init__.py +++ b/pyaes/__init__.py @@ -46,6 +46,6 @@ # https://www.dlitz.net/software/pycrypto/ -VERSION = [0, 1, 0] +VERSION = [1, 0, 0] from pyaes.aes import AES, AESModeOfOperationCTR, AESModeOfOperationCBC, AESModeOfOperationCFB, AESModeOfOperationECB, AESModeOfOperationOFB, AESModesOfOperation, Counter diff --git a/setup.py b/setup.py index be14063..fb914a6 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ for API reference and details.''' setup(name = 'pyaes', - version = '0.1.0', + version = '1.0.0', description = 'Pure-Python Implementation of the AES block-cipher and common modes of operation', long_description = LONG_DESCRIPTION, author = 'Richard Moore',