Skip to content

Commit 9e8c6f8

Browse files
committed
Merge branch 'master' into develop
2 parents cb608fc + eeb41d4 commit 9e8c6f8

File tree

4 files changed

+25
-18
lines changed

4 files changed

+25
-18
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1+
---
12
name: Semantic Release
2-
33
on:
44
push:
55
branches:
66
- master
77

88
jobs:
9-
test:
9+
build:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
max-parallel: 4
1313
matrix:
14-
python-version: [3.6, 3.7, 3.8]
14+
python-version: [3.7, 3.8, 3.9]
1515

1616
steps:
1717
- name: Install secp256k1

.github/workflows/tox.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
---
12
name: tox
2-
33
on: [push]
44

55
jobs:
@@ -11,16 +11,16 @@ jobs:
1111
python-version: [3.7, 3.8, 3.9]
1212

1313
steps:
14-
- name: Install secp256k1
15-
run: sudo apt-get install libsecp256k1-0 libsecp256k1-dev
16-
- uses: actions/checkout@v1
17-
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v1
19-
with:
20-
python-version: ${{ matrix.python-version }}
21-
- name: Install dependencies
22-
run: |
23-
python -m pip install --upgrade pip
24-
pip install tox tox-gh-actions
25-
- name: Test with tox
26-
run: tox
14+
- name: Install secp256k1
15+
run: sudo apt-get install libsecp256k1-0 libsecp256k1-dev
16+
- uses: actions/checkout@v1
17+
- name: Set up Python ${{ matrix.python-version }}
18+
uses: actions/setup-python@v1
19+
with:
20+
python-version: ${{ matrix.python-version }}
21+
- name: Install dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
pip install tox tox-gh-actions
25+
- name: Test with tox
26+
run: tox

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ Note: version releases in the 0.x.y range may introduce breaking changes.
33

44
<!--next-version-placeholder-->
55

6+
## v1.5.4 (2022-05-13)
7+
### Fix
8+
* Empty commit to trigger release ([`e3498fd`](https://github.com/xeroc/python-graphenelib/commit/e3498fd01c2b1e315bc44911a71375afcae9601e))
9+
10+
### Documentation
11+
* Release flow and conventional commits ([`a75a1f6`](https://github.com/xeroc/python-graphenelib/commit/a75a1f69ce3d55f4804c969f366b1c429693bee1))
12+
613
## v1.5.3 (2022-05-13)
714
### Fix
815
* Setup.cfg lib should work with >=3.6 too ([`1023aa3`](https://github.com/xeroc/python-graphenelib/commit/1023aa30d07901339e4db6c7c536993e7501c3da))

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from setuptools import setup
55

6-
__version__ = "1.5.3"
6+
__version__ = "1.5.4"
77

88
setup(
99
version=__version__,

0 commit comments

Comments
 (0)