Skip to content

Commit

Permalink
bump version and amend changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhadfield committed Dec 1, 2015
1 parent 8c05d9e commit cc0d437
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
CHANGELOG
---------
0.1.21 (1st December 2015)

- Show instance counts in output for 'acli ec2 summary'

- Add filtering/searching on AMI lists

`example: acli ami ls --filter=webserver`

0.1.20 (29th November 2015)

Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@ Please submit any issues encountered.

Latest changes ([changelog](https://github.com/jonhadfield/acli/blob/master/CHANGELOG.md "Changelog"))
------------
0.1.21 (1st December 2015)

- Show instance counts in output for 'acli ec2 summary'

- Add filtering/searching on AMI lists

`example: acli ami ls --filter=webserver`


0.1.20 (29th November 2015)

- Added ability to delete keys from S3
Expand Down
2 changes: 1 addition & 1 deletion lib/acli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def clean_command(argv=None, aws_config=None):

def real_main():
args = docopt(__doc__,
version='0.1.20',
version='0.1.21',
options_first=True)
aws_config = Config(args)
argv = [args['<command>']] + args['<args>']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from setuptools.command.test import test as TestCommand
sys.path.insert(0, os.path.abspath('lib'))

version = "0.1.20"
version = "0.1.21"

if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
Expand Down

0 comments on commit cc0d437

Please sign in to comment.