diff --git a/CHANGELOG.md b/CHANGELOG.md index e14595d1..80d9917d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ Rhai Release Notes Version 1.9.0 ============= +The minimum Rust version is now `1.60.0` in order to use the `dep:` syntax for dependencies. + New features ------------ diff --git a/Cargo.toml b/Cargo.toml index 56441c1b..684e2592 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = [".", "codegen"] [package] name = "rhai" version = "1.8.0" -rust-version = "1.60" +rust-version = "1.60.0" edition = "2018" authors = ["Jonathan Turner", "Lukáš Hozda", "Stephen Chung", "jhwgh1968"] description = "Embedded scripting for Rust" diff --git a/README.md b/README.md index 8262e8f0..48c5a27e 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Targets and builds * All CPU and O/S targets supported by Rust, including: * WebAssembly (WASM) * `no-std` -* Minimum Rust version 1.60 +* Minimum Rust version 1.60.0 Standard features