Skip to content

Commit 9b90ecf

Browse files
authored
chore: prep for release 1.0.5 (#190)
Signed-off-by: Facundo Tuesca <facundo.tuesca@trailofbits.com>
1 parent 5890fe2 commit 9b90ecf

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.0.5] - 2025-09-23
11+
12+
### Changed
13+
14+
- Bump `pyca/cryptography` dependency upper bound to version 47
15+
1016
## [1.0.4] - 2025-08-11
1117

1218
### Changed
@@ -138,7 +144,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
138144

139145
This is the first alpha release of `rfc3161-client`.
140146

141-
[Unreleased]: https://github.com/trailofbits/rfc3161-client/compare/v1.0.4...HEAD
147+
[Unreleased]: https://github.com/trailofbits/rfc3161-client/compare/v1.0.5...HEAD
148+
[1.0.5]: https://github.com/trailofbits/rfc3161-client/compare/v1.0.4...v1.0.5
142149
[1.0.4]: https://github.com/trailofbits/rfc3161-client/compare/v1.0.3...v1.0.4
143150
[1.0.3]: https://github.com/trailofbits/rfc3161-client/compare/v1.0.2...v1.0.3
144151
[1.0.2]: https://github.com/trailofbits/rfc3161-client/compare/v1.0.1...v1.0.2

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ classifiers = [
1313
]
1414
# Maturin does not support dynamic fields
1515
# So we keep the version number here instead of __init__
16-
version = "1.0.4"
16+
version = "1.0.5"
1717
readme = "README.md"
1818
license = { file = "LICENSE" }
1919
authors = [{ name = "Trail of Bits", email = "opensource@trailofbits.com" }]

src/rfc3161_client/verify.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from typing import TYPE_CHECKING
99

1010
import cryptography.x509
11-
from cryptography.hazmat.primitives._serialization import Encoding
11+
from cryptography.hazmat.primitives.serialization import Encoding
1212

1313
from rfc3161_client._rust import verify as _rust_verify
1414
from rfc3161_client.errors import VerificationError

0 commit comments

Comments
 (0)