diff --git a/CHANGELOG.md b/CHANGELOG.md index 408524d4..436c5908 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Changed + - [553](https://github.com/thoth-pub/thoth/pull/553) - Upgrade rust to `1.76.0` in production and development `Dockerfile` - [549](https://github.com/thoth-pub/thoth/pull/549) - Build and push staging docker images on pull requests - [549](https://github.com/thoth-pub/thoth/pull/549) - Upgrade docker GitHub actions dependencies (`docker/setup-qemu-action@v3`, `docker/setup-buildx-action@v3`, `docker/login-action@v3`, `docker/build-push-action@v5`) diff --git a/Dockerfile b/Dockerfile index 50dec089..48837b88 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -ARG RUST_IMAGE=rust:1.75.0 -ARG MUSL_IMAGE=clux/muslrust:1.75.0 +ARG RUST_IMAGE=rust:1.76.0 +ARG MUSL_IMAGE=clux/muslrust:1.76.0 FROM ${RUST_IMAGE} as wasm diff --git a/Dockerfile.dev b/Dockerfile.dev index fb47f2d3..7c8475d6 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,4 +1,4 @@ -ARG RUST_VERSION=1.75.0 +ARG RUST_VERSION=1.76.0 FROM rust:${RUST_VERSION}