diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index d7f82b6..d635d27 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -21,7 +21,7 @@ jobs: run: runs-on: ${{ matrix.os }} env: - VERSION: 0.2.6 + VERSION: 0.2.7 strategy: matrix: python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] diff --git a/pysrc/__init__.py b/pysrc/__init__.py index 8878194..2e698e8 100644 --- a/pysrc/__init__.py +++ b/pysrc/__init__.py @@ -2,7 +2,7 @@ from . import mixin_bot_api from . import _mixin -__VERSION__ = '0.2.6' +__VERSION__ = '0.2.7' _mixin.init() diff --git a/release.txt b/release.txt index 7b97919..9770af6 100644 --- a/release.txt +++ b/release.txt @@ -1,4 +1,5 @@ -Release v0.2.6 +Release v0.2.7 + +1. Improve MixinWSAPI class +2. Add utils module -1. Add support for Python 3.11 -2. Update Mixin to v0.14.18 diff --git a/setup.py b/setup.py index 3c5ca7e..9bc9410 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name="mixin-python", - version="0.2.6", + version="0.2.7", description="Mixin Binding Project", author='learnforpractice', url="https://github.com/learnforpractice/mixin-python", diff --git a/tag.sh b/tag.sh index 129764e..b9a43fb 100755 --- a/tag.sh +++ b/tag.sh @@ -1,4 +1,4 @@ -VERSION=v0.2.6 +VERSION=v0.2.7 git push origin :refs/tags/$VERSION git tag -d $VERSION git tag $VERSION -F release.txt