From aa3bd8769c3202c397ff3e326266eec57bcd8118 Mon Sep 17 00:00:00 2001 From: elliot-100 <3186037+elliot-100@users.noreply.github.com> Date: Tue, 19 Nov 2024 16:59:45 +0000 Subject: [PATCH] Bump version to 0.13.1; update CHANGELOG --- CHANGELOG.md | 11 +++++++++++ pyproject.toml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 220f5cf..cb0200a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,15 @@ and this project tries to adhere to [Semantic Versioning](https://semver.org/spe Historic and pre-release versions aren't necessarily included. +## [0.13.1] - 2024-11-19 + +### Changed + +- Remove upper bound on Python version +- Docs: add intro, highlight `Event` and `Group` classes +- Tests: instantiate with `MyClass(**dict)` instead of Pydantic internals; refactor fixtures + + ## [0.13.0] - 2024-11-04 ### Added @@ -194,6 +203,8 @@ Historic and pre-release versions aren't necessarily included. - Update dev/test dependencies: ruff +[0.13.1]: https://github.com/elliot-100/Spond-classes/compare/v0.13.0...v0.13.1 +[0.13.0]: https://github.com/elliot-100/Spond-classes/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/elliot-100/Spond-classes/compare/v0.11.2...v0.12.0 [0.11.2]: https://github.com/elliot-100/Spond-classes/compare/v0.11.1...v0.11.2 [0.11.1]: https://github.com/elliot-100/Spond-classes/compare/v0.11.0...v0.11.1 diff --git a/pyproject.toml b/pyproject.toml index a3025ad..8594bfc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] package-mode = true name = "spond-classes" -version = "0.13.0" +version = "0.13.1" description = "Unofficial class abstraction layer for the `spond` library package." license = "GPL-3.0-only" authors = ["elliot-100 <3186037+elliot-100@users.noreply.github.com>"]