From d6b91312d5410ff732fdffd3c1918145574b1ca1 Mon Sep 17 00:00:00 2001 From: taobun Date: Wed, 8 Sep 2021 14:04:25 +0700 Subject: [PATCH] Bump version to 0.2.8 --- MANIFEST.in | 2 +- publish.sh | 4 +--- setup.py | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index d0bae9b..7c9208a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1 @@ -recursive-include pyband/proto *.py +recursive-include pyband/proto *.py *pyi diff --git a/publish.sh b/publish.sh index 0033bf5..c2df8f3 100644 --- a/publish.sh +++ b/publish.sh @@ -6,8 +6,6 @@ rm -r build dist pyband.egg-info # build new package python3 setup.py sdist bdist_wheel -# publish to testpypi -python3 -m twine upload --repository testpypi dist/* # publish to pypi -# python3 -m twine upload --repository pypi dist/* +python3 -m twine upload --repository pypi dist/* diff --git a/setup.py b/setup.py index f04ebe1..695cb9c 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ name="pyband", packages=setuptools.find_packages(), include_package_data=True, - version="0.2.7", + version="0.2.8", license="MIT", description="Python library for BandChain", long_description=long_description,