From 94fc690909dc848e352624bbe1cd0b13add27e68 Mon Sep 17 00:00:00 2001 From: Cian Ormond Date: Sun, 1 Dec 2024 20:42:09 -0800 Subject: [PATCH] Bump versions --- Cargo.lock | 12 ++++++------ crates/bevy_plugin/Cargo.toml | 4 ++-- crates/compiler/Cargo.toml | 4 ++-- crates/core/Cargo.toml | 2 +- crates/example_dialogue_view/Cargo.toml | 4 ++-- crates/runtime/Cargo.toml | 4 ++-- crates/yarnspinner/Cargo.toml | 8 ++++---- examples/bevy_yarnspinner/Cargo.toml | 4 ++-- examples/yarnspinner_without_bevy/Cargo.toml | 2 +- readme.md | 1 + 10 files changed, 23 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f49976b5..d36feefd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1289,7 +1289,7 @@ dependencies = [ [[package]] name = "bevy_yarnspinner" -version = "0.3.1" +version = "0.4.0" dependencies = [ "anyhow", "bevy", @@ -1305,7 +1305,7 @@ dependencies = [ [[package]] name = "bevy_yarnspinner_example_dialogue_view" -version = "0.3.0" +version = "0.4.0" dependencies = [ "bevy", "bevy_yarnspinner", @@ -5460,7 +5460,7 @@ checksum = "af310deaae937e48a26602b730250b4949e125f468f11e6990be3e5304ddd96f" [[package]] name = "yarnspinner" -version = "0.3.0" +version = "0.4.0" dependencies = [ "anyhow", "log", @@ -5480,7 +5480,7 @@ dependencies = [ [[package]] name = "yarnspinner_compiler" -version = "0.3.0" +version = "0.4.0" dependencies = [ "annotate-snippets", "antlr-rust", @@ -5495,7 +5495,7 @@ dependencies = [ [[package]] name = "yarnspinner_core" -version = "0.3.0" +version = "0.4.0" dependencies = [ "bevy", "prost", @@ -5524,7 +5524,7 @@ dependencies = [ [[package]] name = "yarnspinner_runtime" -version = "0.3.0" +version = "0.4.0" dependencies = [ "bevy", "fixed_decimal", diff --git a/crates/bevy_plugin/Cargo.toml b/crates/bevy_plugin/Cargo.toml index 738c8cbd..011e78b0 100644 --- a/crates/bevy_plugin/Cargo.toml +++ b/crates/bevy_plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_yarnspinner" -version = "0.3.1" +version = "0.4.0" edition = "2021" repository = "https://github.com/YarnSpinnerTool/YarnSpinner-Rust" homepage = "https://docs.yarnspinner.dev/" @@ -20,7 +20,7 @@ audio_assets = ["bevy/bevy_audio", "bevy/vorbis"] anyhow = "1" csv = "1" serde = { version = "1", features = ["derive"] } -yarnspinner = { path = "../yarnspinner", features = ["bevy", "serde"], version = "0.3.0" } +yarnspinner = { path = "../yarnspinner", features = ["bevy", "serde"], version = "0.4.0" } sha2 = "0.10" rand = { version = "0.8", features = ["small_rng"] } diff --git a/crates/compiler/Cargo.toml b/crates/compiler/Cargo.toml index e7509927..e67b4c80 100644 --- a/crates/compiler/Cargo.toml +++ b/crates/compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yarnspinner_compiler" -version = "0.3.0" +version = "0.4.0" edition = "2021" repository = "https://github.com/YarnSpinnerTool/YarnSpinner-Rust" homepage = "https://docs.yarnspinner.dev/" @@ -18,7 +18,7 @@ bevy = ["dep:bevy", "yarnspinner_core/bevy"] antlr-rust = "=0.3.0-beta" better_any = "=0.2.0" regex = "1" -yarnspinner_core = { path = "../core", version = "0.3.0" } +yarnspinner_core = { path = "../core", version = "0.4.0" } annotate-snippets = "0.10" serde = { version = "1", features = ["derive"], optional = true } bevy = { version = "0.15.0", default-features = false, optional = true } diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 38ca0c36..4c43cdd7 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yarnspinner_core" -version = "0.3.0" +version = "0.4.0" edition = "2021" repository = "https://github.com/YarnSpinnerTool/YarnSpinner-Rust" homepage = "https://docs.yarnspinner.dev/" diff --git a/crates/example_dialogue_view/Cargo.toml b/crates/example_dialogue_view/Cargo.toml index e6205c7c..e339624a 100644 --- a/crates/example_dialogue_view/Cargo.toml +++ b/crates/example_dialogue_view/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_yarnspinner_example_dialogue_view" -version = "0.3.0" +version = "0.4.0" edition = "2021" repository = "https://github.com/YarnSpinnerTool/YarnSpinner-Rust" homepage = "https://docs.yarnspinner.dev/" @@ -14,7 +14,7 @@ readme = "../../readme.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bevy_yarnspinner = { path = "../bevy_plugin", version = "0.3.0" } +bevy_yarnspinner = { path = "../bevy_plugin", version = "0.4.0" } unicode-segmentation = "1" [dependencies.bevy] diff --git a/crates/runtime/Cargo.toml b/crates/runtime/Cargo.toml index 7ad772a6..b349cb0e 100644 --- a/crates/runtime/Cargo.toml +++ b/crates/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yarnspinner_runtime" -version = "0.3.0" +version = "0.4.0" edition = "2021" repository = "https://github.com/YarnSpinnerTool/YarnSpinner-Rust" homepage = "https://docs.yarnspinner.dev/" @@ -20,7 +20,7 @@ serde = [ bevy = ["dep:bevy", "yarnspinner_core/bevy"] [dependencies] -yarnspinner_core = { path = "../core", version = "0.3.0" } +yarnspinner_core = { path = "../core", version = "0.4.0" } unicode-normalization = "0.1" unicode-segmentation = "1" log = "0.4" diff --git a/crates/yarnspinner/Cargo.toml b/crates/yarnspinner/Cargo.toml index 8dc4c9d0..0f67ad77 100644 --- a/crates/yarnspinner/Cargo.toml +++ b/crates/yarnspinner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yarnspinner" -version = "0.3.0" +version = "0.4.0" edition = "2021" repository = "https://github.com/YarnSpinnerTool/YarnSpinner-Rust" homepage = "https://docs.yarnspinner.dev/" @@ -27,9 +27,9 @@ bevy = [ ] [dependencies] -yarnspinner_core = { path = "../core", version = "0.3.0" } -yarnspinner_compiler = { path = "../compiler", version = "0.3.0" } -yarnspinner_runtime = { path = "../runtime", version = "0.3.0" } +yarnspinner_core = { path = "../core", version = "0.4.0" } +yarnspinner_compiler = { path = "../compiler", version = "0.4.0" } +yarnspinner_runtime = { path = "../runtime", version = "0.4.0" } log = { version = "0.4", features = ["std"] } [dev-dependencies] diff --git a/examples/bevy_yarnspinner/Cargo.toml b/examples/bevy_yarnspinner/Cargo.toml index 031b92c4..57d7837f 100644 --- a/examples/bevy_yarnspinner/Cargo.toml +++ b/examples/bevy_yarnspinner/Cargo.toml @@ -11,8 +11,8 @@ publish = false [dependencies] bevy = { version = "0.15.0", features = ["file_watcher"] } -bevy_yarnspinner = { path = "../../crates/bevy_plugin", version = "0.3.0" } -bevy_yarnspinner_example_dialogue_view = { path = "../../crates/example_dialogue_view", version = "0.3.0" } +bevy_yarnspinner = { path = "../../crates/bevy_plugin", version = "0.4.0" } +bevy_yarnspinner_example_dialogue_view = { path = "../../crates/example_dialogue_view", version = "0.4.0" } [[bin]] name = "access_variables" diff --git a/examples/yarnspinner_without_bevy/Cargo.toml b/examples/yarnspinner_without_bevy/Cargo.toml index b591f824..7fa378da 100644 --- a/examples/yarnspinner_without_bevy/Cargo.toml +++ b/examples/yarnspinner_without_bevy/Cargo.toml @@ -13,7 +13,7 @@ publish = false crossterm = "0.27" ratatui = "0.26" anyhow = "1.0" -yarnspinner = { path = "../../crates/yarnspinner", version = "0.3.0" } +yarnspinner = { path = "../../crates/yarnspinner", version = "0.4.0" } [[bin]] name = "access_variables" diff --git a/readme.md b/readme.md index c3970655..6806829d 100644 --- a/readme.md +++ b/readme.md @@ -108,6 +108,7 @@ Et voilĂ ! That was all. Thanks for checking out Yarn Spinner for Rust! Continui | Bevy | Yarn Spinner for Rust | |-------------|-----------------------| +| 0.15 | 0.4 | | 0.14 | 0.3 | | 0.13 | 0.2 | | 0.12 | 0.1 |