Skip to content

Commit

Permalink
Merge pull request #42 from matklad/mdd
Browse files Browse the repository at this point in the history
bump msrv & fix docs
  • Loading branch information
matklad authored Jun 18, 2023
2 parents 44f1e17 + 77dcda3 commit 93b703b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-analyzer/expect-test"
authors = ["rust-analyzer developers"]
edition = "2018"
rust-version = "1.60.0"

exclude = ["./github", "bors.toml", "rustfmt.toml"]

Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
//! ```
//!
//! See
//! https://blog.janestreet.com/using-ascii-waveforms-to-test-hardware-designs/
//! <https://blog.janestreet.com/using-ascii-waveforms-to-test-hardware-designs/>
//! for a cool example of snapshot testing in the wild!
//!
//! # Alternatives
Expand All @@ -135,7 +135,7 @@
//!
//! ## Minimal Supported Rust Version
//!
//! This crate's minimum supported `rustc` version is `1.45.0`. MSRV is updated
//! This crate's minimum supported `rustc` version is `1.60.0`. MSRV is updated
//! conservatively, supporting roughly 10 minor versions of `rustc`. MSRV bump
//! is not considered semver breaking, but will require at least minor version
//! bump.
Expand Down
2 changes: 1 addition & 1 deletion xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::env;

use xaction::{cargo_toml, cmd, git, push_rustup_toolchain, section, Result};

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

fn main() {
if let Err(err) = try_main() {
Expand Down

0 comments on commit 93b703b

Please sign in to comment.