Skip to content

Commit 8b2c176

Browse files
woodruffwDarkaMaul
andauthored
chore: prep 1.0.0 (#99)
Signed-off-by: William Woodruff <[email protected]> Co-authored-by: dm <[email protected]>
1 parent 552ed7c commit 8b2c176

File tree

3 files changed

+7
-15
lines changed

3 files changed

+7
-15
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.0.0] - 2024-12-31
11+
1012
## Added
1113

1214
- `TimestampRequest` now accepts setting the hash algorithm to `SHA256` (in addition to `SHA512`)
@@ -88,7 +90,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8890

8991
This is the first alpha release of `rfc3161-client`.
9092

91-
[Unreleased]: https://github.com/trailofbits/rfc3161-client/compare/v0.1.2...HEAD
93+
[Unreleased]: https://github.com/trailofbits/rfc3161-client/compare/v1.0.0...HEAD
94+
[1.0.0]: https://github.com/trailofbits/rfc3161-client/compare/v0.1.2...v1.0.0
9295
[0.1.2]: https://github.com/trailofbits/rfc3161-client/compare/v0.1.1...v0.1.2
9396
[0.1.1]: https://github.com/trailofbits/rfc3161-client/compare/v0.1.0...v0.1.1
9497
[0.1.0]: https://github.com/trailofbits/rfc3161-client/compare/v0.0.5...v0.1.0

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
# `rfc3161-client`
22

3-
> [!WARNING]
4-
> This project is currently in beta. While it is already being used in
5-
> production by downstream projects, we reserve the right to make breaking
6-
> changes to the API. We recommend pinning to specific versions until we reach
7-
> a stable 1.0 release.
8-
9-
103
`rfc3161-client` is a Python library implementing the Time-Stamp Protocol (TSP)
114
described in [RFC 3161](https://www.ietf.org/rfc/rfc3161.txt).
125

pyproject.toml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "rfc3161-client"
33
requires-python = ">=3.9"
44
classifiers = [
5-
"Development Status :: 4 - Beta",
5+
"Development Status :: 5 - Production/Stable",
66
"Programming Language :: Rust",
77
"Programming Language :: Python :: 3",
88
"Programming Language :: Python :: Implementation :: CPython",
@@ -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 = "0.1.2"
16+
version = "1.0.0"
1717
readme = "README.md"
1818
license = { file = "LICENSE" }
1919
authors = [{ name = "Trail of Bits", email = "[email protected]" }]
@@ -56,10 +56,6 @@ exclude_also = ["if TYPE_CHECKING:"]
5656
[tool.interrogate]
5757
# don't enforce documentation coverage for testing, the virtual
5858
# environment, or the scripts.
59-
exclude = [
60-
".venv",
61-
"test",
62-
"scripts",
63-
]
59+
exclude = [".venv", "test", "scripts"]
6460
ignore-semiprivate = true
6561
fail-under = 100

0 commit comments

Comments
 (0)