diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fc6568c --- /dev/null +++ b/.gitignore @@ -0,0 +1,64 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*,cover +.hypothesis/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +#Ipython Notebook +.ipynb_checkpoints + +# IDEA +.idea/* + +# Misc +.DS_Store +*swp +*scratch*.py diff --git a/changelog.md b/changelog.md index da47f3a..bd9e232 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,8 @@ # Changelog + +## 1.13.4 +* Set upper bound of `cryptography` to 2.1 + ## 1.13.3 * Only fetch the session resource and client once * README updates for c# and node imlpementations diff --git a/setup.py b/setup.py index c07849d..761516d 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='credstash', - version='1.13.3', + version='1.13.4', description='A utility for managing secrets in the cloud using AWS KMS and DynamoDB', license='Apache2', url='https://github.com/LuminalOSS/credstash',