Skip to content

Commit

Permalink
0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbrzt committed Aug 13, 2023
1 parent 1c38a4b commit 7ad7afa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ install:
test:
poetry run pytest tests.py --verbose

release:
clean:
rm -rf build dist
python setup.py sdist bdist_wheel
twine upload --repository=fractional-indexing dist/*
release: clean
poetry run python setup.py sdist bdist_wheel
poetry run twine upload --repository=fractional-indexing dist/*
2 changes: 1 addition & 1 deletion fractional_indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import decimal


__version__ = '0.1.1'
__version__ = '0.1.2'
__licence__ = 'CC0 1.0 Universal'

BASE_62_DIGITS = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
Expand Down

0 comments on commit 7ad7afa

Please sign in to comment.