diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cf9d71..72b2d76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to `@railgun-community/ledger-client` are documented here. This project is pre-1.0 and experimental; expect breaking changes on minor versions. +## 0.3.1 — 2026-07-24 + +### Changed + +- The published package now ships accurate docs for the 0.3.0 surface: the viewing-public-key + (`getViewingPublicKey`, INS 0x10) and RAILGUN-address (`getRailgunAddress`, INS 0x14) accessors, + the CLEAR_SIGN transact builders, and the caller-customizable, chain-scoped EIP-7702 path. No code + changes from 0.3.0. + ## 0.3.0 — 2026-07-24 Aligns the client with RAILGUN firmware **1.6.1 (clear-sign-v1)**. Requires that build on diff --git a/README.md b/README.md index 33005a9..f30b11d 100644 --- a/README.md +++ b/README.md @@ -48,21 +48,21 @@ GitHub, pinned to a release tag — see script runs the build): ```bash -yarn add github:Railgun-Community/ledger-client#v0.3.0 +yarn add github:Railgun-Community/ledger-client#v0.3.1 ``` or in `package.json`: ```jsonc "dependencies": { - "@railgun-community/ledger-client": "github:Railgun-Community/ledger-client#v0.3.0" + "@railgun-community/ledger-client": "github:Railgun-Community/ledger-client#v0.3.1" } ``` **From a release tarball** — a pre-built package, no build on install: ```bash -yarn add https://github.com/Railgun-Community/ledger-client/releases/download/v0.3.0/railgun-community-ledger-client-0.3.0.tgz +yarn add https://github.com/Railgun-Community/ledger-client/releases/download/v0.3.1/railgun-community-ledger-client-0.3.1.tgz ``` ## Architecture diff --git a/docs/getting-started.md b/docs/getting-started.md index 3a5d2b4..3c8c9b9 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -13,7 +13,7 @@ Not on npm yet — install from GitHub, pinned to a tag (see the root README for version): ```bash -yarn add github:Railgun-Community/ledger-client#v0.3.0 +yarn add github:Railgun-Community/ledger-client#v0.3.1 ``` Peer deps for browser signing: `@ledgerhq/hw-transport`, `@ledgerhq/hw-transport-webhid`, diff --git a/package.json b/package.json index 2f1b5d5..22c9e9b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@railgun-community/ledger-client", - "version": "0.3.0", + "version": "0.3.1", "description": "RAILGUN hardware wallet connector — Ledger-first, state-machine-driven TSX component", "type": "module", "main": "dist/index.js",