Skip to content

Commit

Permalink
v0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
khvzak committed Jan 25, 2024
1 parent 60730fd commit 75a15ce
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## v0.9.5

- Minimal Luau updated to 0.609
- Luau max stack size increased to 1M (from 100K)
- Implemented `IntoLua` for refs to `String`/`Table`/`Function`/`AnyUserData`/`Thread` + `RegistryKey`
- Implemented `IntoLua` and `FromLua` for `OwnedThread`/`OwnedString`
- Fixed `FromLua` derive proc macro to cover more cases

## v0.9.4

- Fixed loading all-in-one modules under mixed states (eg. main state and coroutines)
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mlua"
version = "0.9.4" # remember to update mlua_derive
version = "0.9.5" # remember to update mlua_derive
authors = ["Aleksandr Orlenko <[email protected]>", "kyren <[email protected]>"]
rust-version = "1.71"
edition = "2021"
Expand Down Expand Up @@ -44,7 +44,7 @@ macros = ["mlua_derive/macros"]
unstable = []

[dependencies]
mlua_derive = { version = "=0.9.1", optional = true, path = "mlua_derive" }
mlua_derive = { version = "=0.9.2", optional = true, path = "mlua_derive" }
bstr = { version = "1.0", features = ["std"], default_features = false }
once_cell = { version = "1.0" }
num-traits = { version = "0.2.14" }
Expand All @@ -55,7 +55,7 @@ erased-serde = { version = "0.4", optional = true }
serde-value = { version = "0.7", optional = true }
parking_lot = { version = "0.12", optional = true }

ffi = { package = "mlua-sys", version = "0.5.0", path = "mlua-sys" }
ffi = { package = "mlua-sys", version = "0.5.1", path = "mlua-sys" }

[target.'cfg(unix)'.dependencies]
libloading = { version = "0.8", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion mlua-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mlua-sys"
version = "0.5.0"
version = "0.5.1"
authors = ["Aleksandr Orlenko <[email protected]>"]
rust-version = "1.71"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion mlua_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mlua_derive"
version = "0.9.1"
version = "0.9.2"
authors = ["Aleksandr Orlenko <[email protected]>"]
edition = "2021"
description = "Procedural macros for the mlua crate."
Expand Down

0 comments on commit 75a15ce

Please sign in to comment.