File tree Expand file tree Collapse file tree 3 files changed +7
-15
lines changed
Expand file tree Collapse file tree 3 files changed +7
-15
lines changed Original file line number Diff line number Diff 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
8991This 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
Original file line number Diff line number Diff line change 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)
114described in [ RFC 3161] ( https://www.ietf.org/rfc/rfc3161.txt ) .
125
Original file line number Diff line number Diff line change 22name = " rfc3161-client"
33requires-python = " >=3.9"
44classifiers = [
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 "
1717readme = " README.md"
1818license = { file = " LICENSE" }
1919authors = [{
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" ]
6460ignore-semiprivate = true
6561fail-under = 100
You can’t perform that action at this time.
0 commit comments