Skip to content

Commit

Permalink
Bumped the version to 1.0.
Browse files Browse the repository at this point in the history
Non-backward compatible change: segment-size is now in bytes.
  • Loading branch information
ricmoo committed May 12, 2014
1 parent 4120e21 commit 6634ff6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyaes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 6634ff6

Please sign in to comment.