Skip to content

Commit

Permalink
chore: prep 1.0.0
Browse files Browse the repository at this point in the history
Closes #96.

Signed-off-by: William Woodruff <[email protected]>
  • Loading branch information
woodruffw committed Dec 27, 2024
1 parent 552ed7c commit a434fa3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 14 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0] - 2024-12-27

## Added

- `TimestampRequest` now accepts setting the hash algorithm to `SHA256` (in addition to `SHA512`)
Expand Down Expand Up @@ -88,7 +90,8 @@ 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.1.2...HEAD
[Unreleased]: https://github.com/trailofbits/rfc3161-client/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/trailofbits/rfc3161-client/compare/v0.1.2...v1.0.0
[0.1.2]: https://github.com/trailofbits/rfc3161-client/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/trailofbits/rfc3161-client/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/trailofbits/rfc3161-client/compare/v0.0.5...v0.1.0
Expand Down
7 changes: 0 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
# `rfc3161-client`

> [!WARNING]
> This project is currently in beta. While it is already being used in
> production by downstream projects, we reserve the right to make breaking
> changes to the API. We recommend pinning to specific versions until we reach
> a stable 1.0 release.

`rfc3161-client` is a Python library implementing the Time-Stamp Protocol (TSP)
described in [RFC 3161](https://www.ietf.org/rfc/rfc3161.txt).

Expand Down
8 changes: 2 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ classifiers = [
]
# Maturin does not support dynamic fields
# So we keep the version number here instead of __init__
version = "0.1.2"
version = "1.0.0"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Trail of Bits", email = "[email protected]" }]
Expand Down Expand Up @@ -56,10 +56,6 @@ exclude_also = ["if TYPE_CHECKING:"]
[tool.interrogate]
# don't enforce documentation coverage for testing, the virtual
# environment, or the scripts.
exclude = [
".venv",
"test",
"scripts",
]
exclude = [".venv", "test", "scripts"]
ignore-semiprivate = true
fail-under = 100

0 comments on commit a434fa3

Please sign in to comment.