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
8 changes: 4 additions & 4 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ hex-literal = { version = "0.4", default-features = false }
rand = { version = "0.8", default-features = false }

# Workspace crates
turnkey_api_key_stamper = { path = "api_key_stamper", version = "0.5.0" }
turnkey_client = { path = "client", version = "0.5.0" }
turnkey_enclave_encrypt = { path = "enclave_encrypt", version = "0.5.0" }
turnkey_proofs = { path = "proofs", version = "0.5.0" }
turnkey_api_key_stamper = { path = "api_key_stamper", version = "0.6.0" }
turnkey_client = { path = "client", version = "0.6.0" }
turnkey_enclave_encrypt = { path = "enclave_encrypt", version = "0.6.0" }
turnkey_proofs = { path = "proofs", version = "0.6.0" }
9 changes: 8 additions & 1 deletion api_key_stamper/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [0.6.0](https://github.com/tkhq/rust-sdk/compare/turnkey_api_key_stamper-v0.5.0...turnkey_api_key_stamper-v0.6.0) - 2026-02-20

### Other

- https://github.com/tkhq/rust-sdk/pull/80: Security patch for `bytes` crate


## [0.5.0](https://github.com/tkhq/rust-sdk/compare/turnkey_api_key_stamper-v0.4.0...turnkey_api_key_stamper-v0.5.0) - 2025-10-17

### Other

- trivial import formatting update
- https://github.com/tkhq/rust-sdk/pull/63/: trivial import formatting update

## [0.4.0](https://github.com/tkhq/rust-sdk/compare/turnkey_api_key_stamper-v0.3.0...turnkey_api_key_stamper-v0.4.0) - 2025-09-29

Expand Down
2 changes: 1 addition & 1 deletion api_key_stamper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "turnkey_api_key_stamper"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license = "Apache-2.0"
description = "Generate signatures over Turnkey API requests using a P-256 key."
Expand Down
13 changes: 13 additions & 0 deletions client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [0.6.0](https://github.com/tkhq/rust-sdk/compare/turnkey_client-v0.5.0...turnkey_client-v0.6.0) - 2026-02-20

### Added

- https://github.com/tkhq/rust-sdk/pull/66: [**breaking**] Update to mono v2025.12.2, and create create a wrapper for all activity results to accommodate for app proofs.
- https://github.com/tkhq/rust-sdk/pull/84: Update to mono v2026.2.5

### Other

- https://github.com/tkhq/rust-sdk/pull/62: Use Rustls by default (remove openssl)
- https://github.com/tkhq/rust-sdk/pull/77: Support bytes as base64 in codegen
- https://github.com/tkhq/rust-sdk/pull/80: Security patch for `bytes` crate

## [0.5.0](https://github.com/tkhq/rust-sdk/compare/turnkey_client-v0.4.0...turnkey_client-v0.5.0) - 2025-10-17

### Other
Expand Down
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "turnkey_client"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license = "Apache-2.0"
description = "A Rust client to interact with the Turnkey API."
Expand Down
6 changes: 6 additions & 0 deletions enclave_encrypt/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.6.0](https://github.com/tkhq/rust-sdk/compare/turnkey_enclave_encrypt-v0.5.0...turnkey_enclave_encrypt-v0.6.0) - 2026-02-20

### Other

- https://github.com/tkhq/rust-sdk/pull/80: Security patch for `bytes` crate

## [0.4.0](https://github.com/tkhq/rust-sdk/compare/turnkey_enclave_encrypt-v0.3.0...turnkey_enclave_encrypt-v0.4.0) - 2025-09-29

### Other
Expand Down
2 changes: 1 addition & 1 deletion enclave_encrypt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "turnkey_enclave_encrypt"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license = "Apache-2.0"
description = "Utilities to encrypt and decrypt data sent to and from Turnkey secure enclaves, using HPKE (RFC 9180). Used in authentication, export, and import flows."
Expand Down
6 changes: 6 additions & 0 deletions proofs/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.6.0](https://github.com/tkhq/rust-sdk/compare/turnkey_proofs-v0.5.0...turnkey_proofs-v0.6.0) - 2026-02-20

### Other

- https://github.com/tkhq/rust-sdk/pull/80: Security patch for `bytes` crate

## [0.5.0](https://github.com/tkhq/rust-sdk/compare/turnkey_proofs-v0.4.0...turnkey_proofs-v0.5.0) - 2025-10-17

### Other
Expand Down
2 changes: 1 addition & 1 deletion proofs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "turnkey_proofs"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license = "Apache-2.0"
description = "Utilities to parse and verify Turnkey secure enclave proofs"
Expand Down
Loading