From 1862fbdeb9784ad664f10ebf3f3eaf039daeca4f Mon Sep 17 00:00:00 2001 From: wayne-luminal Date: Wed, 11 Oct 2017 15:20:44 -0400 Subject: [PATCH 1/3] Bump version to 1.13.4 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', From cd62e0eae1df72944901eb51b5f47577d50780ef Mon Sep 17 00:00:00 2001 From: wayne-luminal Date: Wed, 11 Oct 2017 15:20:53 -0400 Subject: [PATCH 2/3] Update changelog --- changelog.md | 4 ++++ 1 file changed, 4 insertions(+) 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 From ffa46b74bf5c0e9e35685eaf6630a94d7f67ba2a Mon Sep 17 00:00:00 2001 From: wayne-luminal Date: Wed, 11 Oct 2017 15:21:00 -0400 Subject: [PATCH 3/3] Add .gitignore --- .gitignore | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .gitignore 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