From 1df0bf95c0b260c009016d3d310caa0e74a8ba4b Mon Sep 17 00:00:00 2001 From: relikd Date: Fri, 22 Jul 2022 19:37:44 +0200 Subject: [PATCH] chore: bump version 1.0.2 --- Makefile | 12 ------------ botlib/__init__.py | 2 +- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/Makefile b/Makefile index fe65684..cd0bce6 100644 --- a/Makefile +++ b/Makefile @@ -2,15 +2,3 @@ dist: setup.py botlib/* @echo Building... python3 setup.py sdist bdist_wheel rm -rf ./*.egg-info/ ./build/ MANIFEST - -env-publish: - @echo Creating virtual environment... - @python3 -m venv 'env-publish' - @source env-publish/bin/activate && pip install twine - -.PHONY: publish -publish: dist env-publish - [ -z "$${VIRTUAL_ENV}" ] # you can not do this inside a virtual environment. - @echo Publishing... - @echo "\033[0;31mEnter PyPI token in password prompt:\033[0m" - @source env-publish/bin/activate && export TWINE_USERNAME='__token__' && twine upload dist/* diff --git a/botlib/__init__.py b/botlib/__init__.py index 12c6eaa..9e89aa0 100755 --- a/botlib/__init__.py +++ b/botlib/__init__.py @@ -1,7 +1,7 @@ ''' Collection of tools to streamline data format conversion. ''' -__version__ = '1.0.1' +__version__ = '1.0.2' # import sys # if __name__ != '__main__':