Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
crccheck committed Mar 24, 2018
1 parent f6ad1e9 commit 17df34b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## 1.0.0

Initial release
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
APP=postdoc
VERSION=0.4.0
VERSION=1.0.0


help: ## Shows this help
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion postdoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from urllib import unquote


__version__ = '0.4.0'
__version__ = '1.0.0'


def get_uri(env_var='DATABASE_URL'):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 17df34b

Please sign in to comment.