Skip to content

Commit

Permalink
fixes for fyrox-template + bump versions again
Browse files Browse the repository at this point in the history
  • Loading branch information
mrDIMAS committed May 23, 2024
1 parent 897e7f5 commit 5cf61ca
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion fyrox-animation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ readme = "README.md"
rust-version = "1.72"

[dependencies]
fyrox-core = { version = "0.28.0", path = "../fyrox-core" }
fyrox-core = { version = "0.28.1", path = "../fyrox-core" }
strum = "0.26.1"
strum_macros = "0.26.1"
fxhash = "0.2.1"
Expand Down
2 changes: 1 addition & 1 deletion fyrox-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-core"
version = "0.28.0"
version = "0.28.1"
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
edition = "2021"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion fyrox-graph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ repository = "https://github.com/FyroxEngine/Fyrox"
rust-version = "1.72"

[dependencies]
fyrox-core = { path = "../fyrox-core", version = "0.28.0" }
fyrox-core = { path = "../fyrox-core", version = "0.28.1" }
fyrox-resource = { path = "../fyrox-resource", version = "0.12.0" }
fxhash = "0.2.1"
2 changes: 1 addition & 1 deletion fyrox-impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ rust-version = "1.72"

[dependencies]
fyrox-core-derive = { path = "../fyrox-core-derive", version = "0.23.0" }
fyrox-core = { path = "../fyrox-core", version = "0.28.0", features = ["serde"] }
fyrox-core = { path = "../fyrox-core", version = "0.28.1", features = ["serde"] }
fyrox-sound = { path = "../fyrox-sound", version = "0.35.0" }
fyrox-ui = { path = "../fyrox-ui", version = "0.25.0" }
fyrox-resource = { path = "../fyrox-resource", version = "0.12.0" }
Expand Down
2 changes: 1 addition & 1 deletion fyrox-resource/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repository = "https://github.com/FyroxEngine/Fyrox"
rust-version = "1.72"

[dependencies]
fyrox-core = { path = "../fyrox-core", version = "0.28.0" }
fyrox-core = { path = "../fyrox-core", version = "0.28.1" }
fxhash = "0.2.1"
ron = "0.8.0"
serde = { version = "1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion fyrox-sound/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ readme = "README.md"
rust-version = "1.72"

[dependencies]
fyrox-core = { path = "../fyrox-core", version = "0.28.0" }
fyrox-core = { path = "../fyrox-core", version = "0.28.1" }
fyrox-resource = { path = "../fyrox-resource", version = "0.12.0" }
lewton = "0.10.2"
ogg = "0.8.0"
Expand Down
2 changes: 1 addition & 1 deletion fyrox-ui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ readme = "README.md"
rust-version = "1.72"

[dependencies]
fyrox-core = { path = "../fyrox-core", version = "0.28.0", features = ["serde"] }
fyrox-core = { path = "../fyrox-core", version = "0.28.1", features = ["serde"] }
fyrox-resource = { path = "../fyrox-resource", version = "0.12.0" }
fyrox-graph = { path = "../fyrox-graph", version = "0.1.0" }
fyrox-animation = { path = "../fyrox-animation", version = "0.2.0"}
Expand Down
4 changes: 4 additions & 0 deletions template/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -807,6 +807,10 @@ fn main() {

// Engine -> (Editor, Scripts) version mapping.
let editor_versions = [
(
"0.34.0".to_string(),
("0.21.0".to_string(), Some("0.3.0".to_string())),
),
(
"0.33.0".to_string(),
("0.20.0".to_string(), Some("0.2.0".to_string())),
Expand Down

0 comments on commit 5cf61ca

Please sign in to comment.