Skip to content

Commit 17df34b

Browse files
committed
v1.0.0
1 parent f6ad1e9 commit 17df34b

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 1.0.0
2+
3+
Initial release

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
APP=postdoc
2-
VERSION=0.4.0
2+
VERSION=1.0.0
33

44

55
help: ## Shows this help
@@ -27,7 +27,7 @@ version: ## Set version number
2727
# 2. `make release`
2828
# 3. `git push origin master --tags`
2929
release: clean version
30-
@git commit -am "bump version to v$(VERSION)"
30+
@git commit -am "v$(VERSION)"
3131
@git tag v$(VERSION)
3232
@-pip install wheel > /dev/null
3333
python setup.py sdist bdist_wheel upload

postdoc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from urllib import unquote
2626

2727

28-
__version__ = '0.4.0'
28+
__version__ = '1.0.0'
2929

3030

3131
def get_uri(env_var='DATABASE_URL'):

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name='postdoc',
6-
version='0.4.0',
6+
version='1.0.0',
77
description='A helper for Postgres + Docker that works for free',
88
long_description=open('README.rst').read(),
99
author='Chris Chang',

0 commit comments

Comments
 (0)