From be49cc8996a422037f398b14418d9693e04aa9be Mon Sep 17 00:00:00 2001 From: "Y.Tsuji" Date: Thu, 6 Sep 2018 22:32:57 +0900 Subject: [PATCH] Release 0.1.0 --- .gitignore | 4 +++- README.md | 12 ++++++++++++ setup.py | 7 ++++--- 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index d545432..f2a1cd4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ .idea/ -work/ +build/ +dist/ *.egg-info/ +work/ *.pyc *.iml .python-version diff --git a/README.md b/README.md index 5fa6c92..b0d97ca 100644 --- a/README.md +++ b/README.md @@ -29,12 +29,20 @@ Stacks: Install `fabricawscfn` (and [Dependencies](./setup.py)) via pip. ```bash +pip install fabricawscfn + + OR + pip install git+https://github.com/crossroad0201/fabric-aws-cloudformation.git ``` ## Update ```bash +pip install fabricawscfn -U + + OR + pip install git+https://github.com/crossroad0201/fabric-aws-cloudformation.git -U ``` @@ -327,6 +335,10 @@ Usage see [example/fabfile.py](./example/fabfile.py). # Change log +### 2018/09/06 - Ver.0.1.0 + +* **\[FIX]** Specified Account/Profile/Region are not used on sync_templates task. + ### 2017/12/13 * **\[NEW]** Supported confirmation at execute some tasks.(Synchronize templates, Update/Delete stack) diff --git a/setup.py b/setup.py index c6b2245..2d34f75 100644 --- a/setup.py +++ b/setup.py @@ -5,15 +5,16 @@ setup( name = 'fabricawscfn', - version = '0.0.1', + version = '0.1.0', description = 'Fabric task generator for AWS CloudFormation.', license = 'MIT', author = 'Yohei TSUJI', url = 'https://github.com/crossroad0201/fabric-awscfn', + keywords = 'fabric aws cloudformation', packages = find_packages(), install_requires = [ - 'fabric', + 'fabric<2.0', 'boto3', 'prettytable' ] -) \ No newline at end of file +)