Skip to content

Commit

Permalink
Fixed compatibility classifier
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Bellaccini committed May 26, 2018
1 parent f22e45c commit 45633ce
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
History
===============

0.3.1 (May 2018)
~~~~~~~~~~~~~~~~~~
* Fixed Python version compatibility classifier
* Removed useless stat

0.3 (Aug 2017)
~~~~~~~~~~~~~~~~~~
* Switched from `pycrypto`_ to `PyCA Cryptography`_ for crypto primitives
Expand Down
2 changes: 1 addition & 1 deletion pyAesCrypt/crypto.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
from os import stat, remove

# pyAesCrypt version
version = "0.3"
version = "0.3.1"

# encryption/decryption buffer size - 64K
bufferSize = 64 * 1024
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
README = readme.read()

setup(name='pyAesCrypt',
version='0.3',
version='0.3.1',
packages = find_packages(),
include_package_data=True,
description='Encrypt and decrypt files in AES Crypt format (version 2)',
Expand All @@ -19,7 +19,6 @@
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Security',
'Topic :: Security :: Cryptography',
Expand Down

0 comments on commit 45633ce

Please sign in to comment.