From 10201b847a93ae5ac9e724f3d9e632bb0070b8b6 Mon Sep 17 00:00:00 2001 From: Markus Klein Date: Mon, 12 Sep 2022 15:28:40 +0200 Subject: [PATCH] Minimal supported rust version is 1.57.0 --- Cargo.toml | 4 ++-- Changelog.md | 5 +++++ rust-toolchain.toml | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1be2aff..81d18a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "atoi" -version = "1.0.0" +version = "2.0.0" authors = ["Markus Klein"] license = "MIT" repository = "https://github.com/pacman82/atoi-rs" documentation = "https://docs.rs/atoi/" edition = "2021" -rust-version = "1.56.0" +rust-version = "1.57.0" # A short blurb about the package. This is not rendered in any format when # uploaded to crates.io (aka this is not markdown). diff --git a/Changelog.md b/Changelog.md index 159267a..2abae29 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,11 @@ Changelog ========= +2.0.0 (next) +----- + +* Minimal supported compiler is Rust 1.57.0 + 1.0.0 ----- diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 9bce953..9cab394 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,2 +1,2 @@ [toolchain] -channel = "1.56.0" +channel = "1.57.0"