diff --git a/Cargo.toml b/Cargo.toml index c347e90..35789da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bevy_scriptum" authors = ["Jaroslaw Konik "] -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/README.md b/README.md index 45cd7c0..0026214 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ Add the following to your `Cargo.toml`: ```toml [dependencies] -bevy_scriptum = "0.1" +bevy_scriptum = "0.2" ``` or execute `cargo add bevy_scriptum` from your project directory. @@ -146,6 +146,7 @@ The examples live in `examples` directory and their corresponding scripts live i | bevy version | bevy_scriptum version | |--------------|----------------------| +| 0.11 | 0.2 | | 0.10 | 0.1 | ### Promises - getting return values from scripts diff --git a/src/lib.rs b/src/lib.rs index f1614ab..cbe9bff 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -78,7 +78,7 @@ //! //! ```toml //! [dependencies] -//! bevy_scriptum = "0.1" +//! bevy_scriptum = "0.2" //! ``` //! //! or execute `cargo add bevy_scriptum` from your project directory. @@ -144,6 +144,7 @@ //! //! | bevy version | bevy_scriptum version | //! |--------------|----------------------| +//! | 0.11 | 0.2 | //! | 0.10 | 0.1 | //! //! ## Promises - getting return values from scripts