From f7c77467f993260833ce17787429760e67fce9fb Mon Sep 17 00:00:00 2001 From: Dominic Grimm Date: Fri, 1 Mar 2024 19:44:16 +0100 Subject: [PATCH] Bump version --- Dockerfile | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a6181bf..eb65634 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,6 @@ ARG MOLD_VERSION RUN wget -qO- https://github.com/rui314/mold/releases/download/v${MOLD_VERSION}/mold-${MOLD_VERSION}-x86_64-linux.tar.gz | tar xzf - \ && cp -RT mold-${MOLD_VERSION}-x86_64-linux /usr/local \ && rm -rf mold-${MOLD_VERSION}-x86_64-linux -RUN cargo install cargo-chef --version 0.1.62 --locked +RUN cargo install cargo-chef --version 0.1.65 --locked WORKDIR /env RUN echo "export MOLD=$(which mold)" > .env diff --git a/Makefile b/Makefile index 25be6d7..7ae71f9 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: build -RUST_VERSION = 1.75.0 -MOLD_VERSION = 2.4.0 +RUST_VERSION = 1.76.0 +MOLD_VERSION = 2.4.1 build: docker build . \