diff --git a/README.md b/README.md index 145089e..c73e4fb 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/SECURITY.md b/SECURITY.md index cbfd106..20010a1 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -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 diff --git a/book/src/introduction.md b/book/src/introduction.md index 7dfbe60..6b0a529 100644 --- a/book/src/introduction.md +++ b/book/src/introduction.md @@ -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. diff --git a/book/src/lua/installation.md b/book/src/lua/installation.md index f5ca8fc..a031ab3 100644 --- a/book/src/lua/installation.md +++ b/book/src/lua/installation.md @@ -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 diff --git a/book/src/rhai/installation.md b/book/src/rhai/installation.md index c0fce8e..023d6f4 100644 --- a/book/src/rhai/installation.md +++ b/book/src/rhai/installation.md @@ -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 diff --git a/book/src/ruby/installation.md b/book/src/ruby/installation.md index 11a7c64..fe67f4a 100644 --- a/book/src/ruby/installation.md +++ b/book/src/ruby/installation.md @@ -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 diff --git a/src/lib.rs b/src/lib.rs index 7aa56e6..e535d09 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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.