diff --git a/Cargo.toml b/Cargo.toml index aafb2ac3..7437b53e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = [ [package] name = "rhai" -version = "0.20.0" +version = "0.19.1" edition = "2018" authors = ["Jonathan Turner", "Lukáš Hozda", "Stephen Chung", "jhwgh1968"] description = "Embedded scripting for Rust" diff --git a/RELEASES.md b/RELEASES.md index 4ce09906..63c761f4 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,10 +1,11 @@ Rhai Release Notes ================== -Version 0.20.0 +Version 0.19.1 ============== -This version adds a variable resolver with the ability to short-circuit variable access. +This version adds a variable resolver with the ability to short-circuit variable access, +plus a whole bunch of array methods. Breaking changes ---------------- @@ -33,7 +34,7 @@ New features * `Dynamic::from(&str)` now constructs a `Dynamic` with a copy of the string as value. * `AST::combine` and `AST::combine_filtered` allows combining two `AST`'s without creating a new one. * `map`, `filter`, `reduce`, `reduce_rev`, `some`, `all`, `extract`, `splice`, `chop` and `sort` functions for arrays. -* New `Module::set_iter`, `Module::set_iterable` and `Module::set_iterator` to define type iterators more easily. `Engine::register_iterator` is changed to use the simpler version. +* New `Module::set_iterable` and `Module::set_iterator` to define type iterators more easily. `Engine::register_iterator` is changed to use the simpler version. Enhancements ------------ diff --git a/doc/src/context.json b/doc/src/context.json index 79f961ec..d451bd41 100644 --- a/doc/src/context.json +++ b/doc/src/context.json @@ -1,5 +1,5 @@ { - "version": "0.20.0", + "version": "0.19.1", "repoHome": "https://github.com/jonathandturner/rhai/blob/master", "repoTree": "https://github.com/jonathandturner/rhai/tree/master", "rootUrl": "",