Skip to content

Commit 440787f

Browse files
committed
Merge pull-request #61
2 parents acb4550 + 9056625 commit 440787f

File tree

9 files changed

+31
-12
lines changed

9 files changed

+31
-12
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ hex-literal = { version = "0.4", default-features = false }
8888
rand = { version = "0.8", default-features = false }
8989

9090
# Workspace crates
91-
turnkey_api_key_stamper = { path = "api_key_stamper", version = "0.4.0" }
92-
turnkey_client = { path = "client", version = "0.4.0" }
93-
turnkey_enclave_encrypt = { path = "enclave_encrypt", version = "0.4.0" }
94-
turnkey_proofs = { path = "proofs", version = "0.4.0" }
91+
turnkey_api_key_stamper = { path = "api_key_stamper", version = "0.5.0" }
92+
turnkey_client = { path = "client", version = "0.5.0" }
93+
turnkey_enclave_encrypt = { path = "enclave_encrypt", version = "0.5.0" }
94+
turnkey_proofs = { path = "proofs", version = "0.5.0" }

api_key_stamper/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.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
11+
12+
### Other
13+
14+
- trivial import formatting update
15+
1016
## [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
1117

1218
### Other

api_key_stamper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "turnkey_api_key_stamper"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Generate signatures over Turnkey API requests using a P-256 key."

client/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.5.0](https://github.com/tkhq/rust-sdk/compare/turnkey_client-v0.4.0...turnkey_client-v0.5.0) - 2025-10-17
11+
12+
### Other
13+
14+
- https://github.com/tkhq/rust-sdk/pull/62: Use rustls by default, remove openssl dependency (Thank you @rplusq)
15+
- The existing `reqwest_native_tls` feature flag remains available for users who need native-tls.
16+
1017
## [0.4.0](https://github.com/tkhq/rust-sdk/compare/turnkey_client-v0.3.0...turnkey_client-v0.4.0) - 2025-09-29
1118

1219
### Other

client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "turnkey_client"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "A Rust client to interact with the Turnkey API."

enclave_encrypt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "turnkey_enclave_encrypt"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
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."

proofs/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.5.0](https://github.com/tkhq/rust-sdk/compare/turnkey_proofs-v0.4.0...turnkey_proofs-v0.5.0) - 2025-10-17
11+
12+
### Other
13+
14+
- https://github.com/tkhq/rust-sdk/pull/60: Add app proof / boot proof verification logic to proofs crate
15+
1016
## [0.4.0](https://github.com/tkhq/rust-sdk/compare/turnkey_proofs-v0.3.0...turnkey_proofs-v0.4.0) - 2025-09-29
1117

1218
### Other

proofs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "turnkey_proofs"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Utilities to parse and verify Turnkey secure enclave proofs"

0 commit comments

Comments
 (0)