Bump version.

This commit is contained in:
Stephen Chung 2021-04-16 21:59:11 +08:00
parent 2b10c5c6c1
commit e31506fe51
3 changed files with 7 additions and 5 deletions

View File

@ -1,11 +1,13 @@
Rhai Release Notes Rhai Release Notes
================== ==================
Version 0.19.16 Version 0.20.0
=============== ==============
This version adds string interpolation with `` `... ${`` ... ``} ...` `` syntax. This version adds string interpolation with `` `... ${`` ... ``} ...` `` syntax.
`switch` statement cases can now have conditions.
Negative indices for arrays and strings are allowed and now count from the end (-1 = last item/character). Negative indices for arrays and strings are allowed and now count from the end (-1 = last item/character).
Bug fixes Bug fixes

View File

@ -3,7 +3,7 @@ members = [".", "codegen"]
[package] [package]
name = "rhai" name = "rhai"
version = "0.19.16" version = "0.20.0"
edition = "2018" edition = "2018"
authors = ["Jonathan Turner", "Lukáš Hozda", "Stephen Chung", "jhwgh1968"] authors = ["Jonathan Turner", "Lukáš Hozda", "Stephen Chung", "jhwgh1968"]
description = "Embedded scripting for Rust" description = "Embedded scripting for Rust"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "rhai_codegen" name = "rhai_codegen"
version = "0.3.4" version = "0.3.5"
edition = "2018" edition = "2018"
authors = ["jhwgh1968"] authors = ["jhwgh1968"]
description = "Procedural macro support package for Rhai, a scripting language for Rust" description = "Procedural macro support package for Rhai, a scripting language for Rust"
@ -16,7 +16,7 @@ default = []
metadata = [] metadata = []
[dev-dependencies] [dev-dependencies]
rhai = { path = "..", version = "0.19" } rhai = { path = "..", version = ">=0.19.15" }
trybuild = "1" trybuild = "1"
[dependencies] [dependencies]