Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
ksindi committed Dec 20, 2019
1 parent ff08749 commit d214aa0
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
.PHONY: clean-pyc clean-build docs clean build install install-all version

help:
@echo "clean-build - remove build artifacts"
@echo "clean-pyc - remove Python file artifacts"
@echo "release - package and upload a release"
@echo "dist - package"

clean: clean-build clean-pyc

clean-build:
rm -rf build/
rm -rf dist/
rm -rf *.egg-info

clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +

version:
python setup.py --version

release: clean build
python setup.py sdist upload
python setup.py bdist_wheel upload

dist: clean build
python setup.py sdist
python setup.py bdist_wheel
ls -l dist
2 changes: 1 addition & 1 deletion sqlacodegen/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = __version__ = '1.1.6.1'
version = __version__ = '1.1.7'

0 comments on commit d214aa0

Please sign in to comment.