diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ffa73a..657be8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.5] - 2024-12-02 + +### Changed + +- The minimum version of `cryptography` required is now `44` + ([#75](https://github.com/trailofbits/rfc3161-client/pull/75)) + ## [0.0.4] - 2024-11-20 ### Added @@ -49,8 +56,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 This is the first alpha release of `rfc3161-client`. -[Unreleased]: https://github.com/trailofbits/rfc3161-client/compare/v0.0.4...HEAD -[0.0.3]: https://github.com/trailofbits/rfc3161-client/compare/v0.0.3...v0.0.4 +[Unreleased]: https://github.com/trailofbits/rfc3161-client/compare/v0.0.5...HEAD +[0.0.4]: https://github.com/trailofbits/rfc3161-client/compare/v0.0.4...v0.0.5 +[0.0.4]: https://github.com/trailofbits/rfc3161-client/compare/v0.0.3...v0.0.4 [0.0.3]: https://github.com/trailofbits/rfc3161-client/compare/v0.0.2...v0.0.3 [0.0.2]: https://github.com/trailofbits/rfc3161-client/compare/v0.0.1...v0.0.2 [0.0.1]: https://github.com/trailofbits/rfc3161-client/releases/tag/v0.0.1 diff --git a/pyproject.toml b/pyproject.toml index a779685..34a219e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,14 +13,11 @@ classifiers = [ ] # Maturin does not support dynamic fields # So we keep the version number here instead of __init__ -version = "0.0.4" +version = "0.0.5" readme = "README.md" license = { file = "LICENSE" } authors = [{ name = "Trail of Bits", email = "opensource@trailofbits.com" }] -dependencies = [ - "maturin>=1.7,<2.0", - "cryptography>=43,<45", -] +dependencies = ["maturin>=1.7,<2.0", "cryptography>=44,<45"] [project.optional-dependencies] doc = [] @@ -53,6 +50,4 @@ target-version = "py39" select = ["E", "F", "I", "W", "UP", "TCH"] [tool.coverage.report] -exclude_also = [ - "if TYPE_CHECKING:", -] +exclude_also = ["if TYPE_CHECKING:"]