Skip to content

Commit dba6069

Browse files
authored
Merge pull request #253 from YarnSpinnerTool/fix-oops
Fix oopses
2 parents 6a0b13a + 567f06d commit dba6069

File tree

7 files changed

+16
-17
lines changed

7 files changed

+16
-17
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/bevy_plugin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_yarnspinner"
3-
version = "0.6.0-rc"
3+
version = "0.6.0-rc.0"
44
edition = "2021"
55
repository = "https://github.com/YarnSpinnerTool/YarnSpinner-Rust"
66
homepage = "https://docs.yarnspinner.dev/"

crates/compiler/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yarnspinner_compiler"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
edition = "2021"
55
repository = "https://github.com/YarnSpinnerTool/YarnSpinner-Rust"
66
homepage = "https://docs.yarnspinner.dev/"
@@ -18,7 +18,7 @@ bevy = ["dep:bevy", "yarnspinner_core/bevy"]
1818
antlr-rust = "=0.3.0-beta"
1919
better_any = "=0.2.0"
2020
regex = "1"
21-
yarnspinner_core = { path = "../core", version = "0.5.0" }
21+
yarnspinner_core = { path = "../core", version = "0.6.0" }
2222
annotate-snippets = "0.10"
2323
serde = { version = "1", features = ["derive"], optional = true }
2424
bevy = { version = "0.17.0-rc", default-features = false, optional = true }

crates/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yarnspinner_core"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
edition = "2021"
55
repository = "https://github.com/YarnSpinnerTool/YarnSpinner-Rust"
66
homepage = "https://docs.yarnspinner.dev/"

crates/example_dialogue_view/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_yarnspinner_example_dialogue_view"
3-
version = "0.6.0-rc"
3+
version = "0.6.0-rc.1"
44
edition = "2021"
55
repository = "https://github.com/YarnSpinnerTool/YarnSpinner-Rust"
66
homepage = "https://docs.yarnspinner.dev/"
@@ -27,5 +27,4 @@ features = [
2727
"png",
2828
"bevy_asset",
2929
"bevy_window",
30-
"bevy_winit",
3130
]

crates/runtime/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yarnspinner_runtime"
3-
version = "0.5.0"
3+
version = "0.6.1"
44
edition = "2021"
55
repository = "https://github.com/YarnSpinnerTool/YarnSpinner-Rust"
66
homepage = "https://docs.yarnspinner.dev/"
@@ -28,7 +28,7 @@ serde = [
2828
bevy = ["dep:bevy", "yarnspinner_core/bevy"]
2929

3030
[dependencies]
31-
yarnspinner_core = { path = "../core", version = "0.5.0" }
31+
yarnspinner_core = { path = "../core", version = "0.6.0" }
3232
unicode-normalization = { version = "0.1", default-features = false }
3333
unicode-segmentation = "1"
3434
log = "0.4"

crates/yarnspinner/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yarnspinner"
3-
version = "0.6.0"
3+
version = "0.6.2"
44
edition = "2021"
55
repository = "https://github.com/YarnSpinnerTool/YarnSpinner-Rust"
66
homepage = "https://docs.yarnspinner.dev/"
@@ -28,9 +28,9 @@ bevy = [
2828
]
2929

3030
[dependencies]
31-
yarnspinner_core = { path = "../core", version = "0.5.0" }
31+
yarnspinner_core = { path = "../core", version = "0.6.0" }
3232
yarnspinner_compiler = { path = "../compiler", version = "0.6.0" }
33-
yarnspinner_runtime = { path = "../runtime", version = "0.5.0" }
33+
yarnspinner_runtime = { path = "../runtime", version = "0.6.0" }
3434
log = { version = "0.4", features = ["std"] }
3535
bevy = { version = "0.17.0-rc", default-features = false, optional = true }
3636

0 commit comments

Comments
 (0)