Update version references

This commit is contained in:
Jaroslaw Konik 2026-02-22 23:28:42 +01:00
parent d2b7412df6
commit c5510c9075
7 changed files with 7 additions and 7 deletions

View file

@ -98,7 +98,7 @@ Add the following to your `Cargo.toml`:
```toml
[dependencies]
bevy_scriptum = { version = "0.9", features = ["lua"] }
bevy_scriptum = { version = "0.10", features = ["lua"] }
```
or execute `cargo add bevy_scriptum --features lua` from your project directory.

View file

@ -7,7 +7,7 @@ currently being supported with security updates.
| Version | Supported |
| ------- | ------------------ |
| 0.9 | :white_check_mark: |
| 0.10 | :white_check_mark: |
## Reporting a Vulnerability

View file

@ -120,7 +120,7 @@ Add the following to your `Cargo.toml`:
```toml
[dependencies]
bevy_scriptum = { version = "0.9", features = ["lua"] }
bevy_scriptum = { version = "0.10", features = ["lua"] }
```
or execute `cargo add bevy_scriptum --features lua` from your project directory.

View file

@ -5,7 +5,7 @@ Add the following to your `Cargo.toml`:
```toml
[dependencies]
bevy = "0.17"
bevy_scriptum = { version = "0.9", features = ["lua"] }
bevy_scriptum = { version = "0.10", features = ["lua"] }
```
If you need a different version of bevy you need to use a matching bevy_scriptum

View file

@ -5,7 +5,7 @@ Add the following to your `Cargo.toml`:
```toml
[dependencies]
bevy = "0.17"
bevy_scriptum = { version = "0.9", features = ["rhai"] }
bevy_scriptum = { version = "0.10", features = ["rhai"] }
```
If you need a different version of bevy you need to use a matching bevy_scriptum

View file

@ -46,7 +46,7 @@ Add the following to your `Cargo.toml`:
```toml
[dependencies]
bevy = "0.17"
bevy_scriptum = { version = "0.9", features = ["ruby"] }
bevy_scriptum = { version = "0.10", features = ["ruby"] }
```
If you need a different version of bevy you need to use a matching bevy_scriptum

View file

@ -103,7 +103,7 @@
//!
//! ```toml
//! [dependencies]
//! bevy_scriptum = { version = "0.9", features = ["lua"] }
//! bevy_scriptum = { version = "0.10", features = ["lua"] }
//! ```
//!
//! or execute `cargo add bevy_scriptum --features lua` from your project directory.