Bump version to 1.10.1.

This commit is contained in:
Stephen Chung 2022-09-22 18:23:08 +08:00
parent 7a6ce2a35a
commit ea5ff2ac5f
2 changed files with 9 additions and 5 deletions

View File

@ -1,13 +1,17 @@
Rhai Release Notes
==================
Version 1.11.0
Version 1.10.1
==============
New features
------------
Bug fixes
---------
### Custom syntax with state
* Compiling on 32-bit architectures no longer cause a compilation error.
* Fix type-size test fo 32-bit architectures without the `decimal` feature.
Custom syntax with state
------------------------
* [`Engine::register_custom_syntax_with_state_raw`] is added. The custom syntax parser and implementation functions take on an additional parameter that holds a user-defined custom _state_ which should substantially simplify writing some custom parsers.
* [`Engine::register_custom_syntax_raw`] is deprecated.

View File

@ -3,7 +3,7 @@ members = [".", "codegen"]
[package]
name = "rhai"
version = "1.10.0"
version = "1.10.1"
rust-version = "1.61.0"
edition = "2018"
resolver = "2"