From a4e7b1327e7ee92d7e6273f74fcf1ff862e98d3f Mon Sep 17 00:00:00 2001 From: learnforpractice Date: Mon, 7 Mar 2022 09:45:30 +0800 Subject: [PATCH] Bump version to v1.1.4 --- .github/workflows/python-app.yml | 5 ++--- README.md | 2 +- pysrc/__init__.py | 2 +- release.txt | 5 +++-- setup.py | 2 +- tag.sh | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 5ef1e91e..6b3be458 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -15,15 +15,14 @@ jobs: run: runs-on: ${{ matrix.os }} env: - VERSION: 1.1.3 + VERSION: 1.1.4 strategy: matrix: # python-version: [3.7, 3.8, 3.9, "3.10"] # os: ['windows-latest', 'ubuntu-latest', 'macos-latest'] # os: ['ubuntu-latest', 'macos-10.15', 'macos-latest'] python-version: [3.7, 3.8, 3.9, "3.10"] - # os: ['ubuntu-18.04', 'macos-10.15', 'windows-2019'] - os: ['windows-2019'] + os: ['ubuntu-18.04', 'macos-10.15', 'windows-2019'] fail-fast: false steps: diff --git a/README.md b/README.md index 0f635829..5d7e8aa2 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Python Toolkit for EOS # Latest Release -[pyeoskit v1.1.3](https://github.com/learnforpractice/pyeoskit/releases) +[pyeoskit v1.1.4](https://github.com/learnforpractice/pyeoskit/releases) # Installation diff --git a/pysrc/__init__.py b/pysrc/__init__.py index 492a3659..a971aedc 100644 --- a/pysrc/__init__.py +++ b/pysrc/__init__.py @@ -5,7 +5,7 @@ from .chainapi_sync import ChainApi from pyeoskit import _pyeoskit -__version__='1.1.3' +__version__='1.1.4' _pyeoskit.init() diff --git a/release.txt b/release.txt index 0e5bcf55..20b1add6 100644 --- a/release.txt +++ b/release.txt @@ -1,3 +1,4 @@ -V1.1.3 Release -1. Add support for payer in push_action/push_actions +V1.1.4 Release +1. Add support for Pack&Unpack variant type + diff --git a/setup.py b/setup.py index 74162a6f..07e456da 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( name="pyeoskit", - version="1.1.3", + version="1.1.4", description="Python Toolkit for EOS", author='learnforpractice', license="MIT", diff --git a/tag.sh b/tag.sh index 39134ae5..798bc1b9 100755 --- a/tag.sh +++ b/tag.sh @@ -1,4 +1,4 @@ -VERSION=v1.1.3 +VERSION=v1.1.4 TARGET=origin # git push $TARGET :refs/tags/$VERSION git tag -d $VERSION