Skip to content

Commit 7ad7afa

Browse files
committed
0.1.2
1 parent 1c38a4b commit 7ad7afa

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ install:
55
test:
66
poetry run pytest tests.py --verbose
77

8-
release:
8+
clean:
99
rm -rf build dist
10-
python setup.py sdist bdist_wheel
11-
twine upload --repository=fractional-indexing dist/*
10+
release: clean
11+
poetry run python setup.py sdist bdist_wheel
12+
poetry run twine upload --repository=fractional-indexing dist/*

fractional_indexing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import decimal
1212

1313

14-
__version__ = '0.1.1'
14+
__version__ = '0.1.2'
1515
__licence__ = 'CC0 1.0 Universal'
1616

1717
BASE_62_DIGITS = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'

0 commit comments

Comments
 (0)