Skip to content

Commit 583c35a

Browse files
committed
Prepare for v0.11.0
1 parent 1791c59 commit 583c35a

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## v0.11.0 (Jul 9, 2025)
1+
## v0.11.0 (Jul 13, 2025)
22

33
Changes since v0.11.0-beta.3
44

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"
3-
version = "0.11.0-beta.3" # remember to update mlua_derive
3+
version = "0.11.0" # remember to update mlua_derive
44
authors = ["Aleksandr Orlenko <zxteam@pm.me>", "kyren <catherine@kyju.org>"]
55
rust-version = "1.79.0"
66
edition = "2021"

README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +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.10](https://github.com/mlua-rs/mlua/tree/v0.10) branch for the stable versions of `mlua`.
21-
22-
> **Note**
23-
>
24-
> See v0.10 [release notes](https://github.com/mlua-rs/mlua/blob/main/docs/release_notes/v0.10.md).
25-
2620
`mlua` is a set of bindings to the [Lua](https://www.lua.org) programming language for Rust with a goal to provide a
2721
_safe_ (as much as possible), high level, easy to use, practical and flexible API.
2822

@@ -135,7 +129,7 @@ Add to `Cargo.toml`:
135129

136130
``` toml
137131
[dependencies]
138-
mlua = { version = "0.10", features = ["lua54", "vendored"] }
132+
mlua = { version = "0.11", features = ["lua54", "vendored"] }
139133
```
140134

141135
`main.rs`
@@ -170,7 +164,7 @@ Add to `Cargo.toml`:
170164
crate-type = ["cdylib"]
171165

172166
[dependencies]
173-
mlua = { version = "0.10", features = ["lua54", "module"] }
167+
mlua = { version = "0.11", features = ["lua54", "module"] }
174168
```
175169

176170
`lib.rs`:

0 commit comments

Comments
 (0)