Skip to content

Commit ad28d52

Browse files
authored
release: 0.3.0 (#37)
Co-authored-by: Jo D <dev-jodee@users.noreply.github.com>
1 parent c9ef31e commit ad28d52

File tree

11 files changed

+38
-11
lines changed

11 files changed

+38
-11
lines changed

rust/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 0.3.0 - 2026-01-28
2+
3+
4+
### Documentation
5+
6+
- update READMEs and add missing package documentation (#33)
7+
8+
9+
### Features
10+
11+
- add GCP signer integration (#29)
12+
13+
14+
### Refactoring
15+
16+
- rename from_kms to from_aws_kms for consistency (#32)
17+
18+
- Rename KmsSigner to AwsKmsSigner since other third party use the KMS acronym as well (#30)
19+
120
## 0.2.1 - 2026-01-06
221

322
## 0.2.0 - 2025-12-19

rust/Cargo.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "solana-keychain"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
edition = "2021"
55
license = "MIT"
66
description = "Framework-agnostic Solana signing abstractions"
@@ -25,7 +25,15 @@ fireblocks = [
2525
"dep:chrono",
2626
]
2727
gcp_kms = ["dep:google-cloud-kms-v1", "dep:google-cloud-auth", "dep:reqwest"]
28-
all = ["memory", "vault", "privy", "turnkey", "aws_kms", "fireblocks", "gcp_kms"]
28+
all = [
29+
"memory",
30+
"vault",
31+
"privy",
32+
"turnkey",
33+
"aws_kms",
34+
"fireblocks",
35+
"gcp_kms",
36+
]
2937

3038
# SDK version selection (mutually exclusive)
3139
sdk-v2 = ["dep:solana-sdk"]

typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@solana/keychain-workspace",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"private": true,
55
"description": "Unified Solana transaction signing across multiple backends",
66
"type": "module",

typescript/packages/aws-kms/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@solana/keychain-aws-kms",
33
"author": "Solana Foundation",
4-
"version": "0.2.1",
4+
"version": "0.3.0",
55
"description": "AWS KMS-based signer for Solana transactions using EdDSA (Ed25519)",
66
"license": "MIT",
77
"repository": "https://github.com/solana-foundation/solana-keychain",

typescript/packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"author": "Solana Foundation",
44
"license": "MIT",
55
"repository": "https://github.com/solana-foundation/solana-keychain",
6-
"version": "0.2.1",
6+
"version": "0.3.0",
77
"description": "Core interfaces and types for external Solana signers",
88
"keywords": [
99
"solana",

typescript/packages/fireblocks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@solana/keychain-fireblocks",
33
"author": "Solana Foundation",
4-
"version": "0.2.1",
4+
"version": "0.3.0",
55
"description": "Fireblocks-based signer for Solana transactions",
66
"license": "MIT",
77
"repository": "https://github.com/solana-foundation/solana-keychain",

typescript/packages/keychain/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"author": "Solana Foundation",
44
"license": "MIT",
55
"repository": "https://github.com/solana-foundation/solana-keychain",
6-
"version": "0.2.1",
6+
"version": "0.3.0",
77
"description": "Unified Solana transaction signing across multiple backends",
88
"keywords": [
99
"solana",

typescript/packages/privy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@solana/keychain-privy",
33
"author": "Solana Foundation",
4-
"version": "0.2.1",
4+
"version": "0.3.0",
55
"description": "Privy-based signer for Solana transactions",
66
"license": "MIT",
77
"repository": "https://github.com/solana-foundation/solana-keychain",

typescript/packages/test-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"author": "Solana Foundation",
44
"license": "MIT",
55
"repository": "https://github.com/solana-foundation/solana-keychain",
6-
"version": "0.2.1",
6+
"version": "0.3.0",
77
"description": "Shared testing utilities for Solana signer integration tests",
88
"keywords": [
99
"solana",

typescript/packages/turnkey/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@solana/keychain-turnkey",
33
"author": "Solana Foundation",
4-
"version": "0.2.1",
4+
"version": "0.3.0",
55
"description": "Turnkey-based signer for Solana transactions",
66
"license": "MIT",
77
"repository": "https://github.com/solana-foundation/solana-keychain",

0 commit comments

Comments
 (0)