From bb2c9f7c5933bff181ea21f28c4fc91578c58434 Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Wed, 5 Aug 2020 23:11:54 +0800 Subject: [PATCH] Bump version. --- Cargo.toml | 2 +- RELEASES.md | 6 +++++- doc/src/context.json | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ea523cb9..73cc5b2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rhai" -version = "0.18.1" +version = "0.19.0" edition = "2018" authors = ["Jonathan Turner", "Lukáš Hozda", "Stephen Chung"] description = "Embedded scripting for Rust" diff --git a/RELEASES.md b/RELEASES.md index fc8f6d28..87cb5bdb 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,6 +1,10 @@ Rhai Release Notes ================== +Version 0.19.0 +============== + + Version 0.18.1 ============== @@ -8,7 +12,7 @@ This version adds: * Anonymous functions (in Rust closure syntax). Simplifies creation of single-use ad-hoc functions. * Currying of function pointers. -* Closures - auto-currying of anonymous functions to capture shared variables from the external scope. +* Closures - auto-currying of anonymous functions to capture shared variables from the external scope. Use the `no_closure` feature to disable sharing values and capturing. * Binding the `this` pointer in a function pointer `call`. * Capturing call scope via `func!(...)` syntax. diff --git a/doc/src/context.json b/doc/src/context.json index fb6e4afd..792990b1 100644 --- a/doc/src/context.json +++ b/doc/src/context.json @@ -1,5 +1,5 @@ { - "version": "0.18.1", + "version": "0.19.0", "repoHome": "https://github.com/jonathandturner/rhai/blob/master", "repoTree": "https://github.com/jonathandturner/rhai/tree/master", "rootUrl": "",