diff --git a/CHANGELOG.md b/CHANGELOG.md index 27767a8..489bfc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## Unreleased +### Changed + +- MSRV bumped to 1.76 + +## Fixed + +- Missing newline before alerts + ## 0.15.0 - 2024-04-02 ### Added diff --git a/Cargo.toml b/Cargo.toml index b0c0767..af287bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ readme = "README.md" repository = "https://github.com/lampsitter/egui_commonmark" documentation = "https://docs.rs/egui_commonmark" include = ["**/*.rs", "LICENSE-MIT", "LICENSE-APACHE", "Cargo.toml"] -rust-version = "1.74" # Required by pulldown_cmark +rust-version = "1.76" # Required by egui [dependencies] egui_extras = "0.27" diff --git a/rust-toolchain b/rust-toolchain index 9e137c1..a436857 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1,3 +1,3 @@ [toolchain] -channel = "1.74.0" +channel = "1.76.0" components = ["rustfmt", "clippy"]