Skip to content

Commit e016dcc

Browse files
authored
chore: prep 0.0.5 (#79)
1 parent 9cc82dd commit e016dcc

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.5] - 2024-12-02
10+
11+
### Changed
12+
13+
- The minimum version of `cryptography` required is now `44`
14+
([#75](https://github.com/trailofbits/rfc3161-client/pull/75))
15+
916
## [0.0.4] - 2024-11-20
1017

1118
### Added
@@ -49,8 +56,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4956

5057
This is the first alpha release of `rfc3161-client`.
5158

52-
[Unreleased]: https://github.com/trailofbits/rfc3161-client/compare/v0.0.4...HEAD
53-
[0.0.3]: https://github.com/trailofbits/rfc3161-client/compare/v0.0.3...v0.0.4
59+
[Unreleased]: https://github.com/trailofbits/rfc3161-client/compare/v0.0.5...HEAD
60+
[0.0.4]: https://github.com/trailofbits/rfc3161-client/compare/v0.0.4...v0.0.5
61+
[0.0.4]: https://github.com/trailofbits/rfc3161-client/compare/v0.0.3...v0.0.4
5462
[0.0.3]: https://github.com/trailofbits/rfc3161-client/compare/v0.0.2...v0.0.3
5563
[0.0.2]: https://github.com/trailofbits/rfc3161-client/compare/v0.0.1...v0.0.2
5664
[0.0.1]: https://github.com/trailofbits/rfc3161-client/releases/tag/v0.0.1

pyproject.toml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,11 @@ classifiers = [
1313
]
1414
# Maturin does not support dynamic fields
1515
# So we keep the version number here instead of __init__
16-
version = "0.0.4"
16+
version = "0.0.5"
1717
readme = "README.md"
1818
license = { file = "LICENSE" }
1919
authors = [{ name = "Trail of Bits", email = "opensource@trailofbits.com" }]
20-
dependencies = [
21-
"maturin>=1.7,<2.0",
22-
"cryptography>=44,<45",
23-
]
20+
dependencies = ["maturin>=1.7,<2.0", "cryptography>=44,<45"]
2421

2522
[project.optional-dependencies]
2623
doc = []
@@ -53,6 +50,4 @@ target-version = "py39"
5350
select = ["E", "F", "I", "W", "UP", "TCH"]
5451

5552
[tool.coverage.report]
56-
exclude_also = [
57-
"if TYPE_CHECKING:",
58-
]
53+
exclude_also = ["if TYPE_CHECKING:"]

0 commit comments

Comments
 (0)