From e795c396abdf74498321e541cf119bfa0c25ffc0 Mon Sep 17 00:00:00 2001 From: learnforpractice Date: Fri, 16 Jun 2023 10:02:45 +0800 Subject: [PATCH] Bump version to v0.2.10 --- .github/workflows/python-app.yml | 2 +- pysrc/__init__.py | 2 +- release.txt | 5 +++-- setup.py | 2 +- tag.sh | 2 +- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 7ec0357..9f8bad8 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.9 + VERSION: 0.2.10 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 65a3a29..6b20bd7 100644 --- a/pysrc/__init__.py +++ b/pysrc/__init__.py @@ -2,7 +2,7 @@ from . import mixin_bot_api from . import _mixin -__VERSION__ = '0.2.9' +__VERSION__ = '0.2.10' _mixin.init() diff --git a/release.txt b/release.txt index 54adbba..2795626 100644 --- a/release.txt +++ b/release.txt @@ -1,3 +1,4 @@ -Release v0.2.9 +Release v0.2.10 + +1. Fix withdrawals interface -1. Improve MixinWSAPI class diff --git a/setup.py b/setup.py index 05a980a..5cd04d6 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name="mixin-python", - version="0.2.9", + version="0.2.10", description="Mixin Binding Project", author='learnforpractice', url="https://github.com/learnforpractice/mixin-python", diff --git a/tag.sh b/tag.sh index 1166046..f299eff 100755 --- a/tag.sh +++ b/tag.sh @@ -1,4 +1,4 @@ -VERSION=v0.2.9 +VERSION=v0.2.10 git push origin :refs/tags/$VERSION git tag -d $VERSION git tag $VERSION -F release.txt