Skip to content

Commit 97280d1

Browse files
authored
Merge pull request #567 from CosmWasm/co/update-builder-rust
Update builder to Rust 1.82 and bump version
2 parents 7e81281 + 5bd7543 commit 97280d1

File tree

7 files changed

+10
-6
lines changed

7 files changed

+10
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Builds the Rust library libwasmvm
2-
BUILDERS_PREFIX := cosmwasm/libwasmvm-builder:0101
2+
BUILDERS_PREFIX := cosmwasm/libwasmvm-builder:0102
33
# Contains a full Go dev environment including CGO support in order to run Go tests on the built shared library
44
# This image is currently not published.
55
ALPINE_TESTER := cosmwasm/alpine-tester:local

builders/Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=linux/amd64 rust:1.81.0-alpine
1+
FROM --platform=linux/amd64 rust:1.82.0-alpine
22

33
RUN apk add --no-cache ca-certificates build-base
44

builders/Dockerfile.cross

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=linux/amd64 rust:1.81.0-bookworm
1+
FROM --platform=linux/amd64 rust:1.82.0-bookworm
22

33
# Install build dependencies
44
RUN apt-get update \

builders/Dockerfile.debian

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ENV RUSTUP_HOME=/usr/local/rustup \
1313

1414
RUN wget --no-verbose "https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init" \
1515
&& chmod +x rustup-init \
16-
&& ./rustup-init -y --no-modify-path --profile minimal --default-toolchain 1.81.0 \
16+
&& ./rustup-init -y --no-modify-path --profile minimal --default-toolchain 1.82.0 \
1717
&& rm rustup-init \
1818
&& chmod -R a+w $RUSTUP_HOME $CARGO_HOME \
1919
&& rustup --version \

builders/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Versioned by a simple counter that is not bound to a specific CosmWasm version
22
# See builders/README.md
3-
BUILDERS_PREFIX := cosmwasm/libwasmvm-builder:0101
3+
BUILDERS_PREFIX := cosmwasm/libwasmvm-builder:0102
44

55
.PHONY: docker-image-debian
66
docker-image-debian:

builders/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ See those DockerHub repos for all available versions of the builder images.
2323

2424
**Unreleased**
2525

26+
**Version 0102:**
27+
28+
- Update Rust to 1.82.0.
29+
2630
**Version 0101:**
2731

2832
- Update Rust to 1.81.0.

docs/COMPILER_VERSIONS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,6 @@ We currently use the following version:
6363

6464
| Type | Rust version | Note |
6565
| ------------------------ | ------------ | --------------------------------- |
66-
| Production Rust compiler | 1.81.0 | Builders version 0101 |
66+
| Production Rust compiler | 1.82.0 | Builders version 0102 |
6767
| Min Rust compiler | 1.74.0 | Supports builder versions >= 0019 |
6868
| Tooling Rust compiler | 1.75.0 | |

0 commit comments

Comments
 (0)