Skip to content

Commit e3f1102

Browse files
authored
Prepare release: v0.1.13 (#198)
* Prepare release: v0.1.13 * Revamp coverage
1 parent 4856210 commit e3f1102

File tree

6 files changed

+106
-55
lines changed

6 files changed

+106
-55
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, macos-latest, windows-latest]
16-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
16+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-rc.1"]
1717
steps:
1818
- uses: actions/checkout@v4
1919

@@ -33,6 +33,8 @@ jobs:
3333
run: poetry run pytest -s --cov=web3_input_decoder tests --cov-report xml
3434

3535
- name: Upload to codecov
36-
uses: codecov/codecov-action@v3
36+
uses: codecov/codecov-action@v4
37+
with:
38+
token: ${{ secrets.CODECOV_TOKEN }}
3739

3840
- run: poetry build

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
repos:
22
- repo: https://github.com/astral-sh/ruff-pre-commit
3-
rev: v0.6.0
3+
rev: v0.6.3
44
hooks:
55
- id: ruff
66
args: [--fix]
77
- id: ruff-format
88

99
- repo: https://github.com/pre-commit/mirrors-mypy
10-
rev: v1.11.1
10+
rev: v1.11.2
1111
hooks:
1212
- id: mypy
1313
entry: mypy web3_input_decoder/

poetry.lock

Lines changed: 47 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "web3-input-decoder"
3-
version = "0.1.12"
3+
version = "0.1.13"
44
# doc
55
authors = ["Weiliang Li <[email protected]>"]
66
description = "A simple offline web3 transaction input decoder for functions and constructors"

0 commit comments

Comments
 (0)