-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Alexis <[email protected]> Co-authored-by: Facundo Tuesca <[email protected]>
- Loading branch information
1 parent
f581e6d
commit 02457f7
Showing
4 changed files
with
39 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
|
||
## [0.0.2] - 2024-10-30 | ||
|
||
### Added | ||
|
||
- Magic methods (`__hash__` and `__repr__`) have been added for TimestampResponse and | ||
TimestampRequest ([#32](https://github.com/trailofbits/rfc3161-client/pull/32)) | ||
- `VerifierBuilder` is now the only way to create a `Verifier` ([#35](https://github.com/trailofbits/rfc3161-client/pull/35)) | ||
|
||
### Fixed | ||
|
||
- The version is now correctly sourced from `pyproject.toml` ([#30](https://github.com/trailofbits/rfc3161-client/pull/30)) | ||
- The nonce generation no longer fails sporadically ([#33](https://github.com/trailofbits/rfc3161-client/pull/33)) | ||
- `Accuracy` now correctly accepts valid inputs and enforce range invariants ([#43](https://github.com/trailofbits/rfc3161-client/pull/43)) | ||
- Fixes a bug in how `TSTInfo` was parsed ([#45](https://github.com/trailofbits/rfc3161-client/pull/45)) | ||
|
||
### Changed | ||
|
||
- The public API is now available directly from the main package module ([#36](https://github.com/trailofbits/rfc3161-client/pull/36)) | ||
|
||
## [0.0.1] - 2024-10-18 | ||
|
||
This is the first alpha release of `rfc3161-client`. | ||
|
||
[Unreleased]: https://github.com/trailofbits/rfc3161-client/compare/v0.0.2...HEAD | ||
[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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,8 +12,8 @@ classifiers = [ | |
"Typing :: Typed", | ||
] | ||
# Maturin does not support dynamic fields | ||
# So we keep the version number here (and in __init__.py) | ||
version = "0.0.1" | ||
# So we keep the version number here instead of __init__ | ||
version = "0.0.2" | ||
readme = "README.md" | ||
license = { file = "LICENSE" } | ||
authors = [{ name = "Trail of Bits", email = "[email protected]" }] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.