Skip to content

Commit

Permalink
Bump version to v1.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
learnforpractice committed Jun 7, 2022
1 parent 9fca2d9 commit bcc8964
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
run:
runs-on: ${{ matrix.os }}
env:
VERSION: 1.1.7
VERSION: 1.1.8
strategy:
matrix:
# python-version: [3.7, 3.8, 3.9, "3.10"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Python Toolkit for EOS

# Latest Release

[pyeoskit v1.1.7](https://github.com/learnforpractice/pyeoskit/releases)
[pyeoskit v1.1.8](https://github.com/learnforpractice/pyeoskit/releases)

# Installation

Expand Down
2 changes: 1 addition & 1 deletion pysrc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .chainapi_sync import ChainApi
from . import _pyeoskit

__version__='1.1.7'
__version__='1.1.8'

_pyeoskit.init()

Expand Down
9 changes: 8 additions & 1 deletion pytest/test_eosapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,19 @@ def setup_method(self, method):
def teardown_method(self, method):
pass

def test_tx_idx_overflow(self):
@pytest.mark.asyncio
async def test_tx_idx_overflow(self):
for i in range(1024+1):
account = 'eosio'
if i % 100 == 0:
logger.info('+++%s', i)
r = eosapi.push_action(account, 'sayhello', int.to_bytes(i, 8, 'little'), {account:'active'})
time.sleep(0.5)
for i in range(0, 1025):
account = 'eosio'
if i % 100 == 0:
logger.info('+++%s', i)
r = await eosapi_async.push_action(account, 'sayhello', int.to_bytes(i, 8, 'little'), {account:'active'})

def test_gen_transaction(self):
args = {
Expand Down
4 changes: 2 additions & 2 deletions release.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
V1.1.7 Release
1. Fix crash on Windows
V1.1.8 Release
1. Fix running out of transaction index issue
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(
name="pyeoskit",
version="1.1.7",
version="1.1.8",
description="Python Toolkit for EOS",
author='learnforpractice',
license="MIT",
Expand Down
2 changes: 1 addition & 1 deletion tag.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=v1.1.7
VERSION=v1.1.8
TARGET=origin
# git push $TARGET :refs/tags/$VERSION
git tag -d $VERSION
Expand Down

0 comments on commit bcc8964

Please sign in to comment.