Skip to content

Commit

Permalink
MSRV is 1.56
Browse files Browse the repository at this point in the history
  • Loading branch information
matklad committed Sep 15, 2022
1 parent 2487d34 commit 8ec240e
Show file tree
Hide file tree
Showing 5 changed files with 119 additions and 74 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -2,7 +2,7 @@

## Unreleased

-
- Increase minimal supported Rust version to 1.56.0.

## 1.14.0

Expand Down
186 changes: 115 additions & 71 deletions Cargo.lock.msrv

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Expand Up @@ -4,6 +4,7 @@ version = "1.14.0"
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
license = "MIT OR Apache-2.0"
edition = "2018"
rust-version = "1.56"

description = "Single assignment cells and lazy values."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -267,7 +267,7 @@
//!
//! # Minimum Supported `rustc` Version
//!
//! This crate's minimum supported `rustc` version is `1.36.0`.
//! This crate's minimum supported `rustc` version is `1.56.0`.
//!
//! If only the `std` feature is enabled, MSRV will be updated conservatively.
//! When using other features, like `parking_lot`, MSRV might be updated more frequently, up to the latest stable.
Expand Down
2 changes: 1 addition & 1 deletion xtask/src/main.rs
Expand Up @@ -5,7 +5,7 @@ use std::time::Instant;

use xshell::{cmd, Shell};

const MSRV: &str = "1.36.0";
const MSRV: &str = "1.56.0";

fn main() -> xshell::Result<()> {
let sh = Shell::new()?;
Expand Down

0 comments on commit 8ec240e

Please sign in to comment.