Skip to content

Commit fb714dc

Browse files
authored
chore: release v0.3.0
1 parent 7fbaceb commit fb714dc

File tree

11 files changed

+91
-24
lines changed

11 files changed

+91
-24
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ members = [
1616
]
1717

1818
[workspace.package]
19-
version = "0.2.0"
19+
version = "0.3.0"
2020
edition = "2021"
2121
license = "BSD-3-Clause"
2222
repository = "https://github.com/sigstore/sigultimate"
@@ -85,14 +85,14 @@ futures = "0.3"
8585
directories = "6.0"
8686

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

crates/sigstore-bundle/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ 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+
- unify certificate encoding
15+
- simplifications by only supporting v03 bundle creation
16+
- improve sign / verify flow, add conda specific test
17+
1018
## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-bundle-v0.1.1...sigstore-bundle-v0.2.0) - 2025-11-27
1119

1220
### Other

crates/sigstore-crypto/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ 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+
- unify certificate encoding
15+
- improve sign / verify flow, add conda specific test
16+
- more cleanup of functions
17+
1018
## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-crypto-v0.1.1...sigstore-crypto-v0.2.0) - 2025-11-27
1119

1220
### 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: 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-rekor-v0.2.0...sigstore-rekor-v0.3.0) - 2025-11-28
11+
12+
### Other
13+
14+
- improve sign / verify flow, add conda specific test
15+
1016
## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-rekor-v0.1.1...sigstore-rekor-v0.2.0) - 2025-11-27
1117

1218
### Other

crates/sigstore-sign/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-sign-v0.2.0...sigstore-sign-v0.3.0) - 2025-11-28
11+
12+
### Other
13+
14+
- unify certificate encoding
15+
- simplifications by only supporting v03 bundle creation
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-sign-v0.1.1...sigstore-sign-v0.2.0) - 2025-11-27
1120

1221
### Other

crates/sigstore-trust-root/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ 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+
- improve sign / verify flow, add conda specific test
15+
- more cleanup of functions
16+
1017
## [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
1118

1219
### Other

crates/sigstore-tsa/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ 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-tsa-v0.2.0...sigstore-tsa-v0.3.0) - 2025-11-28
11+
12+
### Other
13+
14+
- improve sign / verify flow, add conda specific test
15+
- more cleanup of functions
16+
1017
## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-tsa-v0.1.1...sigstore-tsa-v0.2.0) - 2025-11-27
1118

1219
### Other

crates/sigstore-types/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ 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-types-v0.2.0...sigstore-types-v0.3.0) - 2025-11-28
11+
12+
### Other
13+
14+
- unify certificate encoding
15+
- improve sign / verify flow, add conda specific test
16+
- more cleanup of functions
17+
1018
## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-types-v0.1.1...sigstore-types-v0.2.0) - 2025-11-27
1119

1220
### Other

0 commit comments

Comments
 (0)