Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
./start_emulator.sh > /dev/null 2>&1 &

- name: Install Poetry and pre-commit 💈
run: pip install poetry==1.8.5 pre-commit
run: pip install poetry==2.2.1 pre-commit

- name: Install dependencies 🛠
run: poetry install
Expand Down Expand Up @@ -62,4 +62,5 @@ jobs:
path: dist

- name: Publish package to PyPI 🙌
uses: pypa/gh-action-pypi-publish@2f6f737ca5f74c637829c0f5c3acd0e29ea5e8bf #v1.8.11
if: success() && github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e #v1.13.0
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout 🔁
uses: actions/checkout@v3
Expand All @@ -29,7 +29,7 @@ jobs:
./start_emulator.sh > /dev/null 2>&1 &

- name: Install Poetry and pre-commit 💈
run: pip install poetry==1.8.5 pre-commit
run: pip install poetry==2.2.1 pre-commit

- name: Install dependencies 🛠
run: poetry install
Expand Down
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [0.12.0] - 2025-11-20

### Changed

- Update underlying libraries to resolve possible security issues.

### Removed

- Removed support of Python 3.9.

## [0.11.0] - 2025-06-06

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

[unreleased]: https://github.com/ioxiocom/firedantic/compare/0.11.0...HEAD
[unreleased]: https://github.com/ioxiocom/firedantic/compare/0.12.0...HEAD
[0.12.0]: https://github.com/ioxiocom/firedantic/compare/0.11.0...0.12.0
[0.11.0]: https://github.com/ioxiocom/firedantic/compare/0.10.0...0.11.0
[0.10.0]: https://github.com/ioxiocom/firedantic/compare/0.9.0...0.10.0
[0.9.0]: https://github.com/ioxiocom/firedantic/compare/0.8.1...0.9.0
Expand Down
Loading