From 7ad7afae88d684519e1cbf292e1af778bb456572 Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Sun, 13 Aug 2023 11:27:28 +0200 Subject: [PATCH] 0.1.2 --- Makefile | 7 ++++--- fractional_indexing.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 6133ebc..bc44dd1 100644 --- a/Makefile +++ b/Makefile @@ -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/* diff --git a/fractional_indexing.py b/fractional_indexing.py index aa3798f..9c1d99f 100644 --- a/fractional_indexing.py +++ b/fractional_indexing.py @@ -11,7 +11,7 @@ import decimal -__version__ = '0.1.1' +__version__ = '0.1.2' __licence__ = 'CC0 1.0 Universal' BASE_62_DIGITS = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'