Skip to content

Commit

Permalink
Update for 2.1.0 release
Browse files Browse the repository at this point in the history
resolves #204
  • Loading branch information
JrGoodle committed Sep 18, 2017
1 parent 897debb commit 70a802c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 2.1.0

- Add ability to import another `clowder.yaml` file and override values
- Add `clowder diff` command to display git diff status. Replaces previous `clowder status -v` command option
- Add `clowder start -t` option to create remote tracking branches
- Add `clowder prune -a` option to prune local and remote branches
- Less noise in output when pruning branches
- Better validation of `clowder.yaml` files

# 2.0.0

- Add support for uploading to PyPI as [clowder-repo](https://pypi.python.org/pypi/clowder-repo)
Expand Down
2 changes: 1 addition & 1 deletion clowder/cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def __init__(self):
self._display_trailing_newline = False

if self.args.clowder_version:
print('clowder version 2.0.0')
print('clowder version 2.1.0')
sys.exit()
if self.args.clowder_command is None or not hasattr(self, self.args.clowder_command):
exit_unrecognized_command(parser)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
setup(
name='clowder-repo',
description='A tool for managing code',
version='2.0.0',
version='2.1.0',
url='http://clowder.cat',
author='Joe DeCapo',
author_email='joe@polka.cat',
Expand Down

0 comments on commit 70a802c

Please sign in to comment.