Skip to content

Commit

Permalink
chore: update MSRV references to 1.82
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbinth committed Nov 6, 2024
1 parent 6bb7d51 commit 17028df
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
- Reduce cloning in the store's `apply_block` (#532).
- [BREAKING] Changed faucet storage type in the genesis to public. Using faucet from the genesis for faucet web app. Added support for faucet restarting without blockchain restarting (#517).
- [BREAKING] Improved `ApplyBlockError` in the store (#535).
- [BREAKING] Updated minimum Rust version to 1.82.

## 0.5.1 (2024-09-12)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/0xPolygonMiden/miden-node/blob/main/LICENSE)
[![test](https://github.com/0xPolygonMiden/miden-node/actions/workflows/test.yml/badge.svg)](https://github.com/0xPolygonMiden/miden-node/actions/workflows/test.yml)
[![RUST_VERSION](https://img.shields.io/badge/rustc-1.80+-lightgray.svg)](https://www.rust-lang.org/tools/install)
[![RUST_VERSION](https://img.shields.io/badge/rustc-1.82+-lightgray.svg)](https://www.rust-lang.org/tools/install)
[![crates.io](https://img.shields.io/crates/v/miden-node)](https://crates.io/crates/miden-node)

This repository holds the Miden node; that is, the software which processes transactions and creates blocks for the Miden rollup.
Expand Down Expand Up @@ -58,7 +58,7 @@ sudo dpkg -i $package_name.deb
### Install using `cargo`
Install Rust version **1.80** or greater using the official Rust installation [instructions](https://www.rust-lang.org/tools/install).
Install Rust version **1.82** or greater using the official Rust installation [instructions](https://www.rust-lang.org/tools/install).
Depending on the platform, you may need to install additional libraries. For example, on Ubuntu 22.04 the following command ensures that all required libraries are installed.
Expand Down
2 changes: 1 addition & 1 deletion bin/node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.80-slim-bookworm AS builder
FROM rust:1.82-slim-bookworm AS builder

RUN apt-get update && \
apt-get -y upgrade && \
Expand Down

0 comments on commit 17028df

Please sign in to comment.