Skip to content

Commit 8eddf85

Browse files
committed
v0.12.0
1 parent 46d3783 commit 8eddf85

4 files changed

Lines changed: 7 additions & 9 deletions

File tree

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mlua"
3-
version = "0.12.0-rc.2" # remember to update mlua_derive
3+
version = "0.12.0" # remember to update mlua_derive
44
authors = ["Aleksandr Orlenko <zxteam@pm.me>", "kyren <catherine@kyju.org>"]
55
rust-version = "1.88"
66
edition = "2024"
@@ -50,7 +50,7 @@ userdata-wrappers = ["parking_lot/send_guard"]
5050
serialize = ["serde"]
5151

5252
[dependencies]
53-
mlua_derive = { version = "=0.12.0-rc.1", optional = true, path = "mlua_derive" }
53+
mlua_derive = { version = "=0.12.0", optional = true, path = "mlua_derive" }
5454
bstr = { version = "1.0", features = ["std"], default-features = false }
5555
either = "1.0"
5656
num-traits = { version = "0.2.14" }
@@ -64,7 +64,7 @@ anyhow = { version = "1.0", optional = true }
6464
inventory = { version = "0.3", optional = true }
6565
libc = "0.2"
6666

67-
ffi = { package = "mlua-sys", version = "0.11.0-rc.1", path = "mlua-sys" }
67+
ffi = { package = "mlua-sys", version = "0.11.0", path = "mlua-sys" }
6868

6969
[dev-dependencies]
7070
trybuild = "1.0"

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
[Benchmarks]: https://github.com/khvzak/script-bench-rs
1818
[FAQ]: FAQ.md
1919

20-
## The main branch is the development version of `mlua`. Please see the [v0.11](https://github.com/mlua-rs/mlua/tree/v0.11) branch for the stable versions of `mlua`.
21-
2220
`mlua` is a set of bindings to the [Lua](https://www.lua.org) programming language for Rust with a goal of providing a
2321
_safe_ (as much as possible), high level, easy to use, practical and flexible API.
2422

@@ -133,7 +131,7 @@ Add to `Cargo.toml`:
133131

134132
``` toml
135133
[dependencies]
136-
mlua = { version = "0.11", features = ["lua54", "vendored"] }
134+
mlua = { version = "0.12", features = ["lua54", "vendored"] }
137135
```
138136

139137
`main.rs`
@@ -168,7 +166,7 @@ Add to `Cargo.toml`:
168166
crate-type = ["cdylib"]
169167

170168
[dependencies]
171-
mlua = { version = "0.11", features = ["lua54", "module"] }
169+
mlua = { version = "0.12", features = ["lua54", "module"] }
172170
```
173171

174172
`lib.rs`:

mlua-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mlua-sys"
3-
version = "0.11.0-rc.1"
3+
version = "0.11.0"
44
authors = ["Aleksandr Orlenko <zxteam@pm.me>"]
55
rust-version = "1.88"
66
edition = "2024"

mlua_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mlua_derive"
3-
version = "0.12.0-rc.1"
3+
version = "0.12.0"
44
authors = ["Aleksandr Orlenko <zxteam@pm.me>"]
55
rust-version = "1.88"
66
edition = "2024"

0 commit comments

Comments
 (0)