diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..9d241d4 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,3 @@ +## 1.0.0 + +Initial release diff --git a/Makefile b/Makefile index aa6539b..db032f2 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ APP=postdoc -VERSION=0.4.0 +VERSION=1.0.0 help: ## Shows this help @@ -27,7 +27,7 @@ version: ## Set version number # 2. `make release` # 3. `git push origin master --tags` release: clean version - @git commit -am "bump version to v$(VERSION)" + @git commit -am "v$(VERSION)" @git tag v$(VERSION) @-pip install wheel > /dev/null python setup.py sdist bdist_wheel upload diff --git a/postdoc.py b/postdoc.py index 2b87cba..5d042ea 100755 --- a/postdoc.py +++ b/postdoc.py @@ -25,7 +25,7 @@ from urllib import unquote -__version__ = '0.4.0' +__version__ = '1.0.0' def get_uri(env_var='DATABASE_URL'): diff --git a/setup.py b/setup.py index 95d49fc..cf59192 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='postdoc', - version='0.4.0', + version='1.0.0', description='A helper for Postgres + Docker that works for free', long_description=open('README.rst').read(), author='Chris Chang',