diff --git a/CHANGELOG.md b/CHANGELOG.md index 87f55f4b..1b6e69f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Rhai Release Notes ================== +Version 1.1.1 +============= + + Version 1.1.0 ============= @@ -60,10 +64,6 @@ Enhancements * `StaticVec` is changed to keep three items inline instead of four. -Version 1.0.7 -============= - - Version 1.0.6 ============= diff --git a/Cargo.toml b/Cargo.toml index 52e61ab6..c59fe1bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "codegen"] [package] name = "rhai" -version = "1.1.0" +version = "1.1.1" edition = "2018" authors = ["Jonathan Turner", "Lukáš Hozda", "Stephen Chung", "jhwgh1968"] description = "Embedded scripting for Rust" @@ -20,7 +20,7 @@ smallvec = { version = "1.6", default-features = false, features = ["union"] } ahash = { version = "0.7", default-features = false } num-traits = { version = "0.2", default-features = false } smartstring = { version = "0.2.7", default-features = false } -rhai_codegen = { version = "1.0", path = "codegen", default-features = false } +rhai_codegen = { version = "1.1", path = "codegen", default-features = false } [features] default = ["ahash/std", "num-traits/std"]