Skip to content

Commit d214aa0

Browse files
committed
Update version
1 parent ff08749 commit d214aa0

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

Makefile

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
.PHONY: clean-pyc clean-build docs clean build install install-all version
2+
3+
help:
4+
@echo "clean-build - remove build artifacts"
5+
@echo "clean-pyc - remove Python file artifacts"
6+
@echo "release - package and upload a release"
7+
@echo "dist - package"
8+
9+
clean: clean-build clean-pyc
10+
11+
clean-build:
12+
rm -rf build/
13+
rm -rf dist/
14+
rm -rf *.egg-info
15+
16+
clean-pyc:
17+
find . -name '*.pyc' -exec rm -f {} +
18+
find . -name '*.pyo' -exec rm -f {} +
19+
find . -name '*~' -exec rm -f {} +
20+
21+
version:
22+
python setup.py --version
23+
24+
release: clean build
25+
python setup.py sdist upload
26+
python setup.py bdist_wheel upload
27+
28+
dist: clean build
29+
python setup.py sdist
30+
python setup.py bdist_wheel
31+
ls -l dist

sqlacodegen/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = __version__ = '1.1.6.1'
1+
version = __version__ = '1.1.7'

0 commit comments

Comments
 (0)