Skip to content

Commit

Permalink
bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mrDIMAS committed May 23, 2024
1 parent 2396589 commit bda1a36
Show file tree
Hide file tree
Showing 15 changed files with 47 additions and 36 deletions.
4 changes: 2 additions & 2 deletions editor-standalone/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ readme = "README.md"
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"]

[dependencies]
fyrox = { version = "0.33.1", path = "../fyrox" }
fyroxed_base = { version = "0.20.0", path = "../editor" }
fyrox = { version = "0.34.0", path = "../fyrox" }
fyroxed_base = { version = "0.21.0", path = "../editor" }
clap = { version = "4", features = ["derive"] }
4 changes: 2 additions & 2 deletions editor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fyroxed_base"
license = "MIT"
version = "0.20.1"
version = "0.21.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
rust-version = "1.72"
Expand All @@ -13,7 +13,7 @@ readme = "README.md"
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md", "/resources/**/*"]

[dependencies]
fyrox = { version = "0.33.1", path = "../fyrox", default-features = false }
fyrox = { version = "0.34.0", path = "../fyrox", default-features = false }
lazy_static = "1.4.0"
ron = "0.8.0"
serde = "^1.0.0"
Expand Down
4 changes: 2 additions & 2 deletions fyrox-animation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-animation"
version = "0.1.0"
version = "0.2.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -15,7 +15,7 @@ readme = "README.md"
rust-version = "1.72"

[dependencies]
fyrox-core = { version = "0.27.0", path = "../fyrox-core" }
fyrox-core = { version = "0.28.0", 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-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-core-derive"
version = "0.22.0"
version = "0.23.0"
authors = ["toyboot4e <[email protected]>, Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions fyrox-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-core"
version = "0.27.0"
version = "0.28.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -15,7 +15,7 @@ readme = "README.md"
rust-version = "1.72"

[dependencies]
fyrox-core-derive = { path = "../fyrox-core-derive", version = "0.22.0" }
fyrox-core-derive = { path = "../fyrox-core-derive", version = "0.23.0" }
fyrox-math = { path = "../fyrox-math", version = "0.1.0" }
base64 = "0.21.0"
byteorder = "1.4.3"
Expand Down
2 changes: 1 addition & 1 deletion fyrox-dylib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ mesh_analysis = ["fyrox-impl/mesh_analysis"]
gltf_blend_shapes = ["fyrox-impl/gltf_blend_shapes"]

[dependencies]
fyrox-impl = { path = "../fyrox-impl", version = "0.33.1" }
fyrox-impl = { path = "../fyrox-impl", version = "0.34.0" }
4 changes: 2 additions & 2 deletions 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.27.0" }
fyrox-resource = { path = "../fyrox-resource", version = "0.11.0" }
fyrox-core = { path = "../fyrox-core", version = "0.28.0" }
fyrox-resource = { path = "../fyrox-resource", version = "0.12.0" }
fxhash = "0.2.1"
14 changes: 7 additions & 7 deletions fyrox-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-impl"
version = "0.33.1"
version = "0.34.0"
authors = ["Dmitry Stepanov <[email protected]>", "Fyrox Engine Contributors"]
edition = "2021"
license = "MIT"
Expand All @@ -15,12 +15,12 @@ readme = "README.md"
rust-version = "1.72"

[dependencies]
fyrox-core-derive = { path = "../fyrox-core-derive", version = "0.22.0" }
fyrox-core = { path = "../fyrox-core", version = "0.27.0", features = ["serde"] }
fyrox-sound = { path = "../fyrox-sound", version = "0.34.0" }
fyrox-ui = { path = "../fyrox-ui", version = "0.24.0" }
fyrox-resource = { path = "../fyrox-resource", version = "0.11.0" }
fyrox-animation = { path = "../fyrox-animation", version = "0.1.0" }
fyrox-core-derive = { path = "../fyrox-core-derive", version = "0.23.0" }
fyrox-core = { path = "../fyrox-core", version = "0.28.0", 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" }
fyrox-animation = { path = "../fyrox-animation", version = "0.2.0" }
fyrox-graph = { path = "../fyrox-graph", version = "0.1.0" }
rapier2d = { version = "0.18", features = ["debug-render"] }
rapier3d = { version = "0.18", features = ["debug-render"] }
Expand Down
4 changes: 2 additions & 2 deletions fyrox-resource/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-resource"
version = "0.11.0"
version = "0.12.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -14,7 +14,7 @@ repository = "https://github.com/FyroxEngine/Fyrox"
rust-version = "1.72"

[dependencies]
fyrox-core = { path = "../fyrox-core", version = "0.27.0" }
fyrox-core = { path = "../fyrox-core", version = "0.28.0" }
fxhash = "0.2.1"
ron = "0.8.0"
serde = { version = "1", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions fyrox-scripts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-scripts"
version = "0.2.0"
version = "0.3.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -14,4 +14,4 @@ repository = "https://github.com/FyroxEngine/Fyrox"
rust-version = "1.72"

[dependencies]
fyrox = { version = "0.33.0", path = "../fyrox" }
fyrox = { version = "0.34.0", path = "../fyrox" }
6 changes: 3 additions & 3 deletions fyrox-sound/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-sound"
version = "0.34.0"
version = "0.35.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -15,8 +15,8 @@ readme = "README.md"
rust-version = "1.72"

[dependencies]
fyrox-core = { path = "../fyrox-core", version = "0.27.0" }
fyrox-resource = { path = "../fyrox-resource", version = "0.11.0" }
fyrox-core = { path = "../fyrox-core", version = "0.28.0" }
fyrox-resource = { path = "../fyrox-resource", version = "0.12.0" }
lewton = "0.10.2"
ogg = "0.8.0"
hrtf = "0.8.0"
Expand Down
8 changes: 4 additions & 4 deletions fyrox-ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-ui"
version = "0.24.0"
version = "0.25.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -15,10 +15,10 @@ readme = "README.md"
rust-version = "1.72"

[dependencies]
fyrox-core = { path = "../fyrox-core", version = "0.27.0", features = ["serde"] }
fyrox-resource = { path = "../fyrox-resource", version = "0.11.0" }
fyrox-core = { path = "../fyrox-core", version = "0.28.0", 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.1.0"}
fyrox-animation = { path = "../fyrox-animation", version = "0.2.0"}
lazy_static = "1.4.0"
copypasta = "0.10.1"
fontdue = "0.8.0"
Expand Down
15 changes: 13 additions & 2 deletions fyrox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
[package]
name = "fyrox"
version = "0.33.1"
version = "0.34.0"
authors = ["Dmitry Stepanov <[email protected]>", "Fyrox Engine Contributors"]
edition = "2021"
license = "MIT"
description = "Feature-rich, easy-to-use, 2D/3D game engine with a scene editor. Like Godot, but in Rust."
keywords = ["sound", "game", "engine", "3d", "gui"]
categories = ["game-engines", "graphics", "gui", "rendering", "wasm"]
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"]
homepage = "https://fyrox.rs"
documentation = "https://docs.rs/fyrox"
repository = "https://github.com/FyroxEngine/Fyrox"
readme = "README.md"
rust-version = "1.72"

[features]
default = ["fyrox-impl"]
Expand All @@ -11,5 +22,5 @@ mesh_analysis = ["fyrox-impl/mesh_analysis", "fyrox-dylib/mesh_analysis"]
gltf_blend_shapes = ["fyrox-impl/gltf_blend_shapes", "fyrox-dylib/gltf_blend_shapes"]

[dependencies]
fyrox-impl = { version = "0.33.1", path = "../fyrox-impl", optional = true }
fyrox-impl = { version = "0.34.0", path = "../fyrox-impl", optional = true }
fyrox-dylib = { version = "0.1.0", path = "../fyrox-dylib", optional = true }
2 changes: 1 addition & 1 deletion template/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-template"
version = "0.10.0"
version = "0.11.0"
edition = "2021"
authors = ["Dmitry Stepanov <[email protected]>"]
license = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions template/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ enum Commands {
// However, it does not seem to work with builds published to crates.io, because when
// the template generator is published, it does not have these Cargo.toml's available
// and to solve this we just hard code these values and pray for the best.
const CURRENT_ENGINE_VERSION: &str = "0.33.0";
const CURRENT_EDITOR_VERSION: &str = "0.20.0";
const CURRENT_SCRIPTS_VERSION: &str = "0.2.0";
const CURRENT_ENGINE_VERSION: &str = "0.34.0";
const CURRENT_EDITOR_VERSION: &str = "0.21.0";
const CURRENT_SCRIPTS_VERSION: &str = "0.3.0";

fn write_file<P: AsRef<Path>, S: AsRef<str>>(path: P, content: S) {
let mut file = File::create(path.as_ref()).unwrap();
Expand Down

0 comments on commit bda1a36

Please sign in to comment.