diff --git a/Makefile b/Makefile index 9e01f1c..b5a6b62 100644 --- a/Makefile +++ b/Makefile @@ -17,12 +17,11 @@ test: # 1. bump version number # 2. `git commit "bump version to v"` # 3. `git tag v` -# 4. `make build` +# 4. `make release` # # If this doesn't work, make sure you have wheels installed: # pip install wheel -.PHONY: build -build: +release: python setup.py sdist bdist_wheel upload diff --git a/setup.py b/setup.py index f79b65a..858b2cd 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='cloudwatch-to-graphite', description='Helper for pushing AWS CloudWatch metrics to Graphite', - version='0.3.0', + version='0.4.0', author='Chris Chang', author_email='c@crccheck.com', url='https://github.com/crccheck/cloudwatch-to-graphite', @@ -24,7 +24,7 @@ license='Apache License, Version 2.0', long_description=open('README.rst').read(), classifiers=[ - 'Development Status :: 3 - Alpha', + 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License',