From b48f363a8ec36cd76832e9c6ff211b8ef48ec68a Mon Sep 17 00:00:00 2001 From: Mathieu Baudet <1105398+ma2bd@users.noreply.github.com> Date: Wed, 3 Dec 2025 17:41:56 -0500 Subject: [PATCH 1/3] release SDK v0.15.7 --- RELEASE_VERSION | 2 +- linera-protocol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/RELEASE_VERSION b/RELEASE_VERSION index c619394..3b1c794 100644 --- a/RELEASE_VERSION +++ b/RELEASE_VERSION @@ -1 +1 @@ -0.15.6 +0.15.7 diff --git a/linera-protocol b/linera-protocol index 29b1249..2587928 160000 --- a/linera-protocol +++ b/linera-protocol @@ -1 +1 @@ -Subproject commit 29b1249aa355f20fe1f3e4e6881bd6898e0a08d8 +Subproject commit 2587928db8b8eb29a9a9d7351af3ede54c77d6f7 From a0d1849ab7c397ec18bcf1e7756d60a8259dbb6a Mon Sep 17 00:00:00 2001 From: Mathieu Baudet <1105398+ma2bd@users.noreply.github.com> Date: Wed, 3 Dec 2025 18:22:31 -0500 Subject: [PATCH 2/3] pin mdbook-* version --- .github/workflows/documentation.yml | 2 +- .github/workflows/main.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 015ec54..38d0f08 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -52,7 +52,7 @@ jobs: - name: Install mdbook preprocessors run: | - cargo install mdbook-linkcheck mdbook-mermaid mdbook-admonish + cargo install mdbook-linkcheck@0.7.7 mdbook-mermaid@0.15.0 mdbook-admonish@1.19.0 - run: mdbook build diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ffe9e5e..ee2dabd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,7 @@ jobs: mdbook-version: '0.4.48' - run: | - cargo install mdbook-mermaid mdbook-admonish + cargo install mdbook-mermaid@0.15.0 mdbook-admonish@1.19.0 mdbook build - name: Deploy From 2b495cc5dcf19bd04334236d456738ef3f2a14f8 Mon Sep 17 00:00:00 2001 From: Mathieu Baudet <1105398+ma2bd@users.noreply.github.com> Date: Sat, 13 Dec 2025 13:39:12 -0500 Subject: [PATCH 3/3] fix links --- src/developers/frontend/wallets.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/developers/frontend/wallets.md b/src/developers/frontend/wallets.md index e8d9673..c238fe6 100644 --- a/src/developers/frontend/wallets.md +++ b/src/developers/frontend/wallets.md @@ -2,12 +2,12 @@ The Linera client library allows you to sign transactions with anything that satisfies -[the `Signer` interface](https://github.com/linera-io/linera-protocol/blob/testnet_conway/linera-web/docs/interfaces/Signer.md). +[the `Signer` interface](https://github.com/linera-io/linera-protocol/tree/testnet_conway/web/%40linera/client/docs/interfaces). This means you can integrate with external software wallets, hardware wallets, Internet-connected wallet services… the only limit is your imagination! To get started building your own signer implementation, have a look at -[our sample in-memory implementation](https://github.com/linera-io/linera-protocol/blob/testnet_conway/linera-web/signer/src/private-key.ts). +[our sample in-memory implementation](https://github.com/linera-io/linera-protocol/blob/testnet_conway/web/%40linera/client/src/signer/PrivateKey.ts). Alternatively, you can use a pre-built wallet integration provided by Linera or our partners. @@ -19,8 +19,8 @@ too. We provide an implementation using MetaMask's blind-signing capabilities to sign Linera transactions in the -[`@linera/signer`](https://www.npmjs.com/package/@linera/signer) package on npm. -Our counter demo also sports a +[`@linera/metamask`](https://www.npmjs.com/package/@linera/metamask) package on +npm. Our counter demo also sports a [MetaMask-based frontend](https://github.com/linera-io/linera-protocol/tree/testnet_conway/examples/counter/metamask) that exemplifies signing application transactions with MetaMask.