Skip to content

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
ckoerber committed Jul 27, 2020
1 parent 52ddda4 commit 70f88f3
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,24 @@ docs:
test:
make -C example/ test
make -C tests/ test

VERSION:=$(shell python setup.py --version)

version:
@echo $(VERSION)

create-dist: test
python -m pip install --upgrade setuptools wheel twine
python setup.py sdist bdist_wheel

pypi-test-upload: create-dist
@echo "---------------------------------------------------------"
@echo "Start uploading djang-gvar version ${VERSION} to testpypi"
@echo "---------------------------------------------------------"
python -m twine upload --repository testpypi dist/espressodb-${VERSION}*

pypi-main-upload: pypi-test-upload
@echo"---------------------------------------------------------"
@echo "Start uploading djang-gvar version ${VERSION} to mainpypi"
@echo"---------------------------------------------------------"
python -m twine upload dist/espressodb-${VERSION}*
2 changes: 1 addition & 1 deletion espressodb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""Initializes minimal settings to launch EspressoDB
"""

__version__ = "1.2.0"
__version__ = "1.2.1"

DEFAULT_OPTIONS = {
"DEBUG": True,
Expand Down

0 comments on commit 70f88f3

Please sign in to comment.