Skip to content

Commit

Permalink
bump version to v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
crccheck committed Mar 5, 2016
1 parent 2bee5b6 commit dbbcda1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 15 deletions.
18 changes: 6 additions & 12 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
VERSION=0.8.1
VERSION=0.9.0


help:
@echo "help"
@echo "-------------------------------------------------------"
@echo "make help this help"
@echo "make clean remove temporary files"
@echo "make test run test suite"
@echo "make install install this package locally"
@echo "make release prep a release and upload to PyPI"
help: ## Shows this help
@echo "$$(grep -h '#\{2\}' $(MAKEFILE_LIST) | sed 's/: #\{2\} / /' | column -t -s ' ')"


clean:
clean: ## Remove temporary files
find . -name "*.pyc" -delete
find . -name ".DS_Store" -delete
rm -rf *.egg
Expand All @@ -20,7 +14,7 @@ clean:
rm -rf build
rm -rf dist

test:
test: ## Run test suite
python -m unittest discover

version:
Expand All @@ -40,6 +34,6 @@ release: clean version
python setup.py sdist bdist_wheel upload

# makes it easier to test setup.py's entry points
install:
install: ## Install this package locally
-pip uninstall cloudwatch-to-graphite --yes
pip install .
2 changes: 1 addition & 1 deletion leadbutt.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
else:
text_type = unicode

__version__ = '0.8.1'
__version__ = '0.9.0'


# configuration
Expand Down
2 changes: 1 addition & 1 deletion plumbum.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
import jinja2
import os.path

__version__ = '0.8.1'
__version__ = '0.9.0'

# DEFAULT_NAMESPACE = 'ec2' # TODO
DEFAULT_REGION = 'us-east-1'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
setup(
name='cloudwatch-to-graphite',
description='Helper for pushing AWS CloudWatch metrics to Graphite',
version='0.8.1',
version='0.9.0',
author='Chris Chang',
author_email='[email protected]',
url='https://github.com/crccheck/cloudwatch-to-graphite',
Expand Down

0 comments on commit dbbcda1

Please sign in to comment.