diff --git a/CHANGELOG.md b/CHANGELOG.md index f00032aa..e47a0fb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Rhai Release Notes ================== +Version 1.7.0 +============= + + Version 1.6.1 ============= @@ -9,6 +13,7 @@ Bug fixes * Functions with `Dynamic` parameters now work in qualified calls from `import`ed modules. * `rhai-repl` now compiles with the new patch version of `rustyline`. +* `rhai_codegen` dependency is now explicitly `1.4` or higher. Script-breaking changes ----------------------- diff --git a/Cargo.toml b/Cargo.toml index 47de2213..c103eabf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "codegen"] [package] name = "rhai" -version = "1.6.1" +version = "1.7.0" rust-version = "1.57" edition = "2018" authors = ["Jonathan Turner", "Lukáš Hozda", "Stephen Chung", "jhwgh1968"]