Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
crossroad0201 committed Sep 6, 2018
1 parent 995e003 commit be49cc8
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
.idea/
work/
build/
dist/
*.egg-info/
work/
*.pyc
*.iml
.python-version
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down Expand Up @@ -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)
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
]
)
)

0 comments on commit be49cc8

Please sign in to comment.