Skip to content

Commit

Permalink
bumped versions for patch
Browse files Browse the repository at this point in the history
  • Loading branch information
mrDIMAS committed Jun 11, 2024
1 parent b2b06cc commit c2abf98
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 0.34.1 Engine + 0.21.1 Editor

- Fixed crash when trying to create parent for root in the editor
- Dispatch script messages after everything is initialized and updated
- Prevent selection type name from disappearing in the inspector
- Fixed potential crash when undoing asset instantiation
- Fixed rendering issues in 2d projection mode in the editor
- Update visual transform of a widget when render transform changes

# 0.34 Engine + 0.21.0 Editor

## Added
Expand Down
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.21.0"
version = "0.21.1"
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.34.0", path = "../fyrox", default-features = false }
fyrox = { version = "0.34.1", 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-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-impl"
version = "0.34.0"
version = "0.34.1"
authors = ["Dmitry Stepanov <[email protected]>", "Fyrox Engine Contributors"]
edition = "2021"
license = "MIT"
Expand All @@ -18,7 +18,7 @@ rust-version = "1.72"
fyrox-core-derive = { path = "../fyrox-core-derive", version = "0.23.0" }
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-ui = { path = "../fyrox-ui", version = "0.25.1" }
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" }
Expand Down
2 changes: 1 addition & 1 deletion fyrox-ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-ui"
version = "0.25.0"
version = "0.25.1"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions fyrox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox"
version = "0.34.0"
version = "0.34.1"
authors = ["Dmitry Stepanov <[email protected]>", "Fyrox Engine Contributors"]
edition = "2021"
license = "MIT"
Expand All @@ -22,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.34.0", path = "../fyrox-impl", optional = true }
fyrox-impl = { version = "0.34.1", path = "../fyrox-impl", optional = true }
fyrox-dylib = { version = "0.1.0", path = "../fyrox-dylib", optional = true }

0 comments on commit c2abf98

Please sign in to comment.