Skip to content

Commit

Permalink
Merge branch 'main' into dm/use-workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkaMaul committed Dec 2, 2024
2 parents 33b9ff5 + e016dcc commit 45af781
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
11 changes: 3 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
Expand Down Expand Up @@ -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:"]

0 comments on commit 45af781

Please sign in to comment.