Skip to content

Commit 1d37aa6

Browse files
authored
Merge pull request #4 from wolfv/release-plz-2025-11-27T15-37-30Z
chore: release v0.3.0
2 parents 65c8eca + 5591280 commit 1d37aa6

File tree

13 files changed

+143
-26
lines changed

13 files changed

+143
-26
lines changed

Cargo.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ members = [
1717
]
1818

1919
[workspace.package]
20-
version = "0.2.0"
20+
version = "0.3.0"
2121
edition = "2021"
2222
license = "BSD-3-Clause"
2323
repository = "https://github.com/sigstore/sigultimate"
@@ -86,15 +86,15 @@ futures = "0.3"
8686
directories = "6.0"
8787

8888
# Internal crates (path + version for publishing)
89-
sigstore-types = { path = "crates/sigstore-types", version = "0.2.0" }
90-
sigstore-crypto = { path = "crates/sigstore-crypto", version = "0.2.0" }
91-
sigstore-merkle = { path = "crates/sigstore-merkle", version = "0.2.0" }
92-
sigstore-tsa = { path = "crates/sigstore-tsa", version = "0.2.0" }
93-
sigstore-trust-root = { path = "crates/sigstore-trust-root", version = "0.2.0" }
94-
sigstore-bundle = { path = "crates/sigstore-bundle", version = "0.2.0" }
95-
sigstore-rekor = { path = "crates/sigstore-rekor", version = "0.2.0" }
96-
sigstore-fulcio = { path = "crates/sigstore-fulcio", version = "0.2.0" }
97-
sigstore-oidc = { path = "crates/sigstore-oidc", version = "0.2.0" }
98-
sigstore-cache = { path = "crates/sigstore-cache", version = "0.2.0" }
99-
sigstore-verify = { path = "crates/sigstore-verify", version = "0.2.0" }
100-
sigstore-sign = { path = "crates/sigstore-sign", version = "0.2.0" }
89+
sigstore-types = { path = "crates/sigstore-types", version = "0.3.0" }
90+
sigstore-crypto = { path = "crates/sigstore-crypto", version = "0.3.0" }
91+
sigstore-merkle = { path = "crates/sigstore-merkle", version = "0.3.0" }
92+
sigstore-tsa = { path = "crates/sigstore-tsa", version = "0.3.0" }
93+
sigstore-trust-root = { path = "crates/sigstore-trust-root", version = "0.3.0" }
94+
sigstore-bundle = { path = "crates/sigstore-bundle", version = "0.3.0" }
95+
sigstore-rekor = { path = "crates/sigstore-rekor", version = "0.3.0" }
96+
sigstore-fulcio = { path = "crates/sigstore-fulcio", version = "0.3.0" }
97+
sigstore-oidc = { path = "crates/sigstore-oidc", version = "0.3.0" }
98+
sigstore-cache = { path = "crates/sigstore-cache", version = "0.3.0" }
99+
sigstore-verify = { path = "crates/sigstore-verify", version = "0.3.0" }
100+
sigstore-sign = { path = "crates/sigstore-sign", version = "0.3.0" }

crates/sigstore-bundle/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.3.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-bundle-v0.2.0...sigstore-bundle-v0.3.0) - 2025-11-28
11+
12+
### Other
13+
14+
- remove more types
15+
- remove certifactePem
16+
- unify certificate encoding
17+
- simplifications by only supporting v03 bundle creation
18+
- improve sign / verify flow, add conda specific test
19+
1020
## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-bundle-v0.1.1...sigstore-bundle-v0.2.0) - 2025-11-27
1121

1222
### Other

crates/sigstore-cache/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.3.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-cache-v0.2.0...sigstore-cache-v0.3.0) - 2025-11-28
11+
12+
### Fixed
13+
14+
- fix clippy warnings
15+
16+
### Other
17+
18+
- add simple separation for cache domains
19+
- add sigstore-cache

crates/sigstore-crypto/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.3.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-crypto-v0.2.0...sigstore-crypto-v0.3.0) - 2025-11-28
11+
12+
### Other
13+
14+
- make all interfaces more type safe
15+
- remove more types
16+
- encode more certificates properly
17+
- unify certificate encoding
18+
- improve sign / verify flow, add conda specific test
19+
- more cleanup of functions
20+
1021
## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-crypto-v0.1.1...sigstore-crypto-v0.2.0) - 2025-11-27
1122

1223
### Other

crates/sigstore-fulcio/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.3.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-fulcio-v0.2.0...sigstore-fulcio-v0.3.0) - 2025-11-28
11+
12+
### Fixed
13+
14+
- fix clippy warnings
15+
16+
### Other
17+
18+
- add sigstore-cache
19+
- remove more types
20+
- encode more certificates properly
21+
1022
## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-fulcio-v0.1.1...sigstore-fulcio-v0.2.0) - 2025-11-27
1123

1224
### Other

crates/sigstore-merkle/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.3.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-merkle-v0.2.0...sigstore-merkle-v0.3.0) - 2025-11-28
11+
12+
### Other
13+
14+
- more cleanup of functions
15+
1016
## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-merkle-v0.1.1...sigstore-merkle-v0.2.0) - 2025-11-27
1117

1218
### Other

crates/sigstore-rekor/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.3.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-rekor-v0.2.0...sigstore-rekor-v0.3.0) - 2025-11-28
11+
12+
### Other
13+
14+
- add sigstore-cache
15+
- make all interfaces more type safe
16+
- remove more types
17+
- remove certifactePem
18+
- improve sign / verify flow, add conda specific test
19+
1020
## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-rekor-v0.1.1...sigstore-rekor-v0.2.0) - 2025-11-27
1121

1222
### Other

crates/sigstore-sign/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.3.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-sign-v0.2.0...sigstore-sign-v0.3.0) - 2025-11-28
11+
12+
### Other
13+
14+
- remove more types
15+
- encode more certificates properly
16+
- remove certifactePem
17+
- unify certificate encoding
18+
- simplifications by only supporting v03 bundle creation
19+
- improve sign / verify flow, add conda specific test
20+
- more cleanup of functions
21+
1022
## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-sign-v0.1.1...sigstore-sign-v0.2.0) - 2025-11-27
1123

1224
### Other

crates/sigstore-trust-root/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.3.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-trust-root-v0.2.0...sigstore-trust-root-v0.3.0) - 2025-11-28
11+
12+
### Other
13+
14+
- add staging trust root
15+
- make all interfaces more type safe
16+
- improve sign / verify flow, add conda specific test
17+
- more cleanup of functions
18+
1019
## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-trust-root-v0.1.1...sigstore-trust-root-v0.2.0) - 2025-11-27
1120

1221
### Other

0 commit comments

Comments
 (0)