Bump version.

This commit is contained in:
Stephen Chung 2020-05-20 00:06:07 +08:00
parent 4a1fd66b9f
commit fad60c0a7d
3 changed files with 9 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "rhai" name = "rhai"
version = "0.14.1" version = "0.14.2"
edition = "2018" edition = "2018"
authors = ["Jonathan Turner", "Lukáš Hozda", "Stephen Chung"] authors = ["Jonathan Turner", "Lukáš Hozda", "Stephen Chung"]
description = "Embedded scripting for Rust" description = "Embedded scripting for Rust"

View File

@ -36,7 +36,7 @@ Rhai's current features set:
to do checked arithmetic operations); for [`no-std`](#optional-features) builds, a number of additional dependencies are to do checked arithmetic operations); for [`no-std`](#optional-features) builds, a number of additional dependencies are
pulled in to provide for functionalities that used to be in `std`. pulled in to provide for functionalities that used to be in `std`.
**Note:** Currently, the version is 0.14.1, so the language and API's may change before they stabilize. **Note:** Currently, the version is 0.14.2, so the language and API's may change before they stabilize.
Installation Installation
------------ ------------
@ -45,7 +45,7 @@ Install the Rhai crate by adding this line to `dependencies`:
```toml ```toml
[dependencies] [dependencies]
rhai = "0.14.1" rhai = "0.14.2"
``` ```
Use the latest released crate version on [`crates.io`](https::/crates.io/crates/rhai/): Use the latest released crate version on [`crates.io`](https::/crates.io/crates/rhai/):

View File

@ -1,9 +1,14 @@
Rhai Release Notes Rhai Release Notes
================== ==================
Version 0.15.0 Version 0.14.2
============== ==============
Regression
----------
* Do not optimize script with `eval_expression` - it is assumed to be one-off and short.
New features New features
------------ ------------