Skip to content

Commit

Permalink
0.27
Browse files Browse the repository at this point in the history
  • Loading branch information
mrDIMAS committed Aug 6, 2022
1 parent 34df077 commit d8dc401
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 20 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox"
version = "0.26.0"
version = "0.27.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -37,10 +37,10 @@ opt-level = 3
debug = true

[dependencies]
fyrox-core = { path = "fyrox-core", version = "0.20.0", features = ["serde"] }
fyrox-sound = { path = "fyrox-sound", version = "0.27.0" }
fyrox-ui = { path = "fyrox-ui", version = "0.17.0" }
fyrox-resource = { path = "fyrox-resource", version = "0.4.0" }
fyrox-core = { path = "fyrox-core", version = "0.21.0", features = ["serde"] }
fyrox-sound = { path = "fyrox-sound", version = "0.28.0" }
fyrox-ui = { path = "fyrox-ui", version = "0.18.0" }
fyrox-resource = { path = "fyrox-resource", version = "0.5.0" }
rapier2d = { version = "0.14", features = ["debug-render"] }
rapier3d = { version = "0.14", features = ["debug-render"] }
image = { version = "0.24.1", default-features = false, features = ["gif", "jpeg", "png", "tga", "tiff", "bmp"] }
Expand Down
6 changes: 3 additions & 3 deletions editor-standalone/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyroxed"
version = "0.13.0"
version = "0.14.0"
license = "MIT"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
Expand All @@ -13,5 +13,5 @@ readme = "README.md"
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"]

[dependencies]
fyrox = { version = "0.26", path = "../" }
fyroxed_base = { version = "0.13.0", path = "../editor" }
fyrox = { version = "0.27", path = "../" }
fyroxed_base = { version = "0.14.0", path = "../editor" }
4 changes: 4 additions & 0 deletions editor-standalone/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# FyroxEd (standalone)

**WARNING:** Standalone version of the editor is not supported, use
[project template generator](https://fyrox-book.github.io/fyrox/beginning/scripting.html) to utilize the full power
of the editor. Standalone version does not support plugins and scripts, it won't be update in next releases!

A standalone version of FyroxEd - native editor of [Fyrox engine](https://github.com/FyroxEngine/Fyrox). The standalone
version allows you only to create and edit scenes, but **not run your game in the editor**. Please see
[the book](https://fyrox-book.github.io/) to learn how to use the editor in different ways.
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.13.0"
version = "0.14.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
rust-version = "1.56"
Expand All @@ -13,7 +13,7 @@ readme = "README.md"
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md", "/resources/**/*"]

[dependencies]
fyrox = { version = "0.26", path = ".." }
fyrox = { version = "0.27", path = ".." }
lazy_static = "1.4.0"
ron = "0.7.0"
serde = "^1.0.0"
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.15.0"
version = "0.16.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.20.0"
version = "0.21.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -16,7 +16,7 @@ resolver = "2"
rust-version = "1.56"

[dependencies]
fyrox-core-derive = { path = "../fyrox-core-derive", version = "0.15.0" }
fyrox-core-derive = { path = "../fyrox-core-derive", version = "0.16.0" }

base64 = "0.13.0"
byteorder = "1.4.3"
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.4.0"
version = "0.5.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -15,4 +15,4 @@ resolver = "2"
rust-version = "1.56"

[dependencies]
fyrox-core = { path = "../fyrox-core", version = "0.20.0" }
fyrox-core = { path = "../fyrox-core", version = "0.21.0" }
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.27.0"
version = "0.28.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -16,8 +16,8 @@ resolver = "2"
rust-version = "1.56"

[dependencies]
fyrox-core = { path = "../fyrox-core", version = "0.20.0" }
fyrox-resource = { path = "../fyrox-resource", version = "0.4.0" }
fyrox-core = { path = "../fyrox-core", version = "0.21.0" }
fyrox-resource = { path = "../fyrox-resource", version = "0.5.0" }
lewton = "0.10.2"
hrtf = "0.8.0"
hound = "3.4.0"
Expand Down
4 changes: 2 additions & 2 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.17.0"
version = "0.18.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -16,7 +16,7 @@ resolver = "2"
rust-version = "1.56"

[dependencies]
fyrox-core = { path = "../fyrox-core", version = "0.20.0" }
fyrox-core = { path = "../fyrox-core", version = "0.21.0" }
lazy_static = "1.4.0"
copypasta = "0.8.1"
fontdue = "0.7.2"
Expand Down

0 comments on commit d8dc401

Please sign in to comment.