From 45e57c97a88d49f876823609458e622a636f83c9 Mon Sep 17 00:00:00 2001 From: GroM Date: Thu, 11 Jan 2024 10:18:43 +0100 Subject: [PATCH 1/3] update cargo-ledger --- full/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/full/Dockerfile b/full/Dockerfile index 61d22a6..0da6af9 100644 --- a/full/Dockerfile +++ b/full/Dockerfile @@ -38,7 +38,7 @@ RUN pip3 install ledgerwallet==0.4.0 RUN apk del python_build_deps # Add cargo ledger (needs a version of Rust >= 1.70) -RUN cargo +$RUST_STABLE_VERSION install --version 1.2.1 cargo-ledger +RUN cargo +$RUST_STABLE_VERSION install --version 1.2.2 cargo-ledger # Setup cargo ledger (install JSON target files) RUN cargo ledger setup From 50dc37c2c04a0a1fa104fd9a8ba96ce921dd53a3 Mon Sep 17 00:00:00 2001 From: GroM Date: Thu, 11 Jan 2024 10:21:20 +0100 Subject: [PATCH 2/3] update cargo-ledger in Legacy as well --- legacy/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/Dockerfile b/legacy/Dockerfile index d57262e..0c79bbf 100644 --- a/legacy/Dockerfile +++ b/legacy/Dockerfile @@ -66,7 +66,7 @@ RUN rustup component add rust-src --toolchain $RUST_NIGHTLY_VERSION RUN pip3 install ledgerwallet==0.4.0 # Add cargo ledger (needs a version of Rust >= 1.70) -RUN cargo +$RUST_STABLE_VERSION install --version 1.2.1 cargo-ledger +RUN cargo +$RUST_STABLE_VERSION install --version 1.2.2 cargo-ledger # Setup cargo ledger (install JSON target files) RUN cargo ledger setup From dfdd30e982f34f9d4b0c1266727ed23e0b055443 Mon Sep 17 00:00:00 2001 From: GroM Date: Thu, 11 Jan 2024 10:22:52 +0100 Subject: [PATCH 3/3] update CHANGELOG --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d452c9..9045cd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.12.1] - 2024-01-11 + +### Changed + - Update cargo-ledger ## [3.12.0] - 2024-01-10