Skip to content

Commit 71ce5eb

Browse files
authored
Update poetry to 2.2.1 in GitHub Actions (#91)
1 parent 2287fa9 commit 71ce5eb

5 files changed

Lines changed: 357 additions & 251 deletions

File tree

.github/workflows/publish.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
./start_emulator.sh > /dev/null 2>&1 &
2828
2929
- name: Install Poetry and pre-commit 💈
30-
run: pip install poetry==1.8.5 pre-commit
30+
run: pip install poetry==2.2.1 pre-commit
3131

3232
- name: Install dependencies 🛠
3333
run: poetry install
@@ -62,4 +62,5 @@ jobs:
6262
path: dist
6363

6464
- name: Publish package to PyPI 🙌
65-
uses: pypa/gh-action-pypi-publish@2f6f737ca5f74c637829c0f5c3acd0e29ea5e8bf #v1.8.11
65+
if: success() && github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
66+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e #v1.13.0

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
13+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1414
steps:
1515
- name: Checkout 🔁
1616
uses: actions/checkout@v3
@@ -29,7 +29,7 @@ jobs:
2929
./start_emulator.sh > /dev/null 2>&1 &
3030
3131
- name: Install Poetry and pre-commit 💈
32-
run: pip install poetry==1.8.5 pre-commit
32+
run: pip install poetry==2.2.1 pre-commit
3333

3434
- name: Install dependencies 🛠
3535
run: poetry install

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
77

88
## [Unreleased]
99

10+
## [0.12.0] - 2025-11-20
11+
12+
### Changed
13+
14+
- Update underlying libraries to resolve possible security issues.
15+
16+
### Removed
17+
18+
- Removed support of Python 3.9.
19+
1020
## [0.11.0] - 2025-06-06
1121

1222
### Added
@@ -290,7 +300,8 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
290300
- Update README.md
291301
- Update .gitignore
292302

293-
[unreleased]: https://github.com/ioxiocom/firedantic/compare/0.11.0...HEAD
303+
[unreleased]: https://github.com/ioxiocom/firedantic/compare/0.12.0...HEAD
304+
[0.12.0]: https://github.com/ioxiocom/firedantic/compare/0.11.0...0.12.0
294305
[0.11.0]: https://github.com/ioxiocom/firedantic/compare/0.10.0...0.11.0
295306
[0.10.0]: https://github.com/ioxiocom/firedantic/compare/0.9.0...0.10.0
296307
[0.9.0]: https://github.com/ioxiocom/firedantic/compare/0.8.1...0.9.0

0 commit comments

Comments
 (0)