Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ members = [
]

[workspace.package]
version = "0.2.0"
version = "0.3.0"
edition = "2021"
license = "BSD-3-Clause"
repository = "https://github.com/sigstore/sigultimate"
Expand Down Expand Up @@ -86,15 +86,15 @@ futures = "0.3"
directories = "6.0"

# Internal crates (path + version for publishing)
sigstore-types = { path = "crates/sigstore-types", version = "0.2.0" }
sigstore-crypto = { path = "crates/sigstore-crypto", version = "0.2.0" }
sigstore-merkle = { path = "crates/sigstore-merkle", version = "0.2.0" }
sigstore-tsa = { path = "crates/sigstore-tsa", version = "0.2.0" }
sigstore-trust-root = { path = "crates/sigstore-trust-root", version = "0.2.0" }
sigstore-bundle = { path = "crates/sigstore-bundle", version = "0.2.0" }
sigstore-rekor = { path = "crates/sigstore-rekor", version = "0.2.0" }
sigstore-fulcio = { path = "crates/sigstore-fulcio", version = "0.2.0" }
sigstore-oidc = { path = "crates/sigstore-oidc", version = "0.2.0" }
sigstore-cache = { path = "crates/sigstore-cache", version = "0.2.0" }
sigstore-verify = { path = "crates/sigstore-verify", version = "0.2.0" }
sigstore-sign = { path = "crates/sigstore-sign", version = "0.2.0" }
sigstore-types = { path = "crates/sigstore-types", version = "0.3.0" }
sigstore-crypto = { path = "crates/sigstore-crypto", version = "0.3.0" }
sigstore-merkle = { path = "crates/sigstore-merkle", version = "0.3.0" }
sigstore-tsa = { path = "crates/sigstore-tsa", version = "0.3.0" }
sigstore-trust-root = { path = "crates/sigstore-trust-root", version = "0.3.0" }
sigstore-bundle = { path = "crates/sigstore-bundle", version = "0.3.0" }
sigstore-rekor = { path = "crates/sigstore-rekor", version = "0.3.0" }
sigstore-fulcio = { path = "crates/sigstore-fulcio", version = "0.3.0" }
sigstore-oidc = { path = "crates/sigstore-oidc", version = "0.3.0" }
sigstore-cache = { path = "crates/sigstore-cache", version = "0.3.0" }
sigstore-verify = { path = "crates/sigstore-verify", version = "0.3.0" }
sigstore-sign = { path = "crates/sigstore-sign", version = "0.3.0" }
10 changes: 10 additions & 0 deletions crates/sigstore-bundle/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-bundle-v0.2.0...sigstore-bundle-v0.3.0) - 2025-11-28

### Other

- remove more types
- remove certifactePem
- unify certificate encoding
- simplifications by only supporting v03 bundle creation
- improve sign / verify flow, add conda specific test

## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-bundle-v0.1.1...sigstore-bundle-v0.2.0) - 2025-11-27

### Other
Expand Down
19 changes: 19 additions & 0 deletions crates/sigstore-cache/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.3.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-cache-v0.2.0...sigstore-cache-v0.3.0) - 2025-11-28

### Fixed

- fix clippy warnings

### Other

- add simple separation for cache domains
- add sigstore-cache
11 changes: 11 additions & 0 deletions crates/sigstore-crypto/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-crypto-v0.2.0...sigstore-crypto-v0.3.0) - 2025-11-28

### Other

- make all interfaces more type safe
- remove more types
- encode more certificates properly
- unify certificate encoding
- improve sign / verify flow, add conda specific test
- more cleanup of functions

## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-crypto-v0.1.1...sigstore-crypto-v0.2.0) - 2025-11-27

### Other
Expand Down
12 changes: 12 additions & 0 deletions crates/sigstore-fulcio/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-fulcio-v0.2.0...sigstore-fulcio-v0.3.0) - 2025-11-28

### Fixed

- fix clippy warnings

### Other

- add sigstore-cache
- remove more types
- encode more certificates properly

## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-fulcio-v0.1.1...sigstore-fulcio-v0.2.0) - 2025-11-27

### Other
Expand Down
6 changes: 6 additions & 0 deletions crates/sigstore-merkle/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-merkle-v0.2.0...sigstore-merkle-v0.3.0) - 2025-11-28

### Other

- more cleanup of functions

## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-merkle-v0.1.1...sigstore-merkle-v0.2.0) - 2025-11-27

### Other
Expand Down
10 changes: 10 additions & 0 deletions crates/sigstore-rekor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-rekor-v0.2.0...sigstore-rekor-v0.3.0) - 2025-11-28

### Other

- add sigstore-cache
- make all interfaces more type safe
- remove more types
- remove certifactePem
- improve sign / verify flow, add conda specific test

## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-rekor-v0.1.1...sigstore-rekor-v0.2.0) - 2025-11-27

### Other
Expand Down
12 changes: 12 additions & 0 deletions crates/sigstore-sign/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-sign-v0.2.0...sigstore-sign-v0.3.0) - 2025-11-28

### Other

- remove more types
- encode more certificates properly
- remove certifactePem
- unify certificate encoding
- simplifications by only supporting v03 bundle creation
- improve sign / verify flow, add conda specific test
- more cleanup of functions

## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-sign-v0.1.1...sigstore-sign-v0.2.0) - 2025-11-27

### Other
Expand Down
9 changes: 9 additions & 0 deletions crates/sigstore-trust-root/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [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

### Other

- add staging trust root
- make all interfaces more type safe
- improve sign / verify flow, add conda specific test
- more cleanup of functions

## [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

### Other
Expand Down
9 changes: 9 additions & 0 deletions crates/sigstore-tsa/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-tsa-v0.2.0...sigstore-tsa-v0.3.0) - 2025-11-28

### Other

- remove more types
- remove certifactePem
- improve sign / verify flow, add conda specific test
- more cleanup of functions

## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-tsa-v0.1.1...sigstore-tsa-v0.2.0) - 2025-11-27

### Other
Expand Down
9 changes: 9 additions & 0 deletions crates/sigstore-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-types-v0.2.0...sigstore-types-v0.3.0) - 2025-11-28

### Other

- make all interfaces more type safe
- unify certificate encoding
- improve sign / verify flow, add conda specific test
- more cleanup of functions

## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-types-v0.1.1...sigstore-types-v0.2.0) - 2025-11-27

### Other
Expand Down
10 changes: 10 additions & 0 deletions crates/sigstore-verify/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-verify-v0.2.0...sigstore-verify-v0.3.0) - 2025-11-28

### Other

- make all interfaces more type safe
- remove more types
- improve sign / verify flow, add conda specific test
- more cleanup of functions
- remove manual verification code and use webpki

## [0.2.0](https://github.com/wolfv/sigstore-rust/compare/sigstore-verify-v0.1.1...sigstore-verify-v0.2.0) - 2025-11-27

### Other
Expand Down