From 7d17f3874e77cd7f27447ebeb348933786da8f3e Mon Sep 17 00:00:00 2001 From: GroM Date: Wed, 19 Feb 2025 11:58:14 +0100 Subject: [PATCH] Update cargo-ledger --- CHANGELOG.md | 5 +++++ full/Dockerfile | 4 ++-- legacy/Dockerfile | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 061cd8f..a72aeb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ 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.51.0] - 2025-02-19 + +### Changed + - Bump cargo-ledger in full and legacy + ## [3.50.0] - 2025-02-03 ### Changed diff --git a/full/Dockerfile b/full/Dockerfile index 2132a13..29e5968 100644 --- a/full/Dockerfile +++ b/full/Dockerfile @@ -43,10 +43,10 @@ RUN pip3 install --no-cache-dir ledgerwallet==0.5.2 RUN apk del python_build_deps # Add cargo ledger -RUN cargo +$RUST_STABLE_VERSION install --version 1.6.0 cargo-ledger +RUN cargo +$RUST_STABLE_VERSION install --version 1.7.0 cargo-ledger # Setup cargo ledger (install JSON target files and custom link script) for nightly -RUN cargo +$RUST_NIGHTLY_VERSION ledger setup +RUN cargo ledger setup # Add a global Cargo config file (includes mandatory unstable features used to build our apps) ADD ./full/cargo_global_config.toml $CARGO_HOME/config.toml diff --git a/legacy/Dockerfile b/legacy/Dockerfile index a6a00af..1cdb386 100644 --- a/legacy/Dockerfile +++ b/legacy/Dockerfile @@ -82,10 +82,10 @@ RUN rustup component add rust-src --toolchain $RUST_STABLE_VERSION RUN pip3 install ledgerwallet==0.5.2 # Add cargo ledger -RUN cargo +$RUST_STABLE_VERSION install --version 1.6.0 cargo-ledger +RUN cargo +$RUST_STABLE_VERSION install --version 1.7.0 cargo-ledger # Setup cargo ledger (install JSON target files and custom link script) -RUN cargo +$RUST_NIGHTLY_VERSION ledger setup +RUN cargo ledger setup # Adding LLVM-15 APT repository and installing it RUN wget --no-check-certificate -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -