Skip to content

Commit d8dc401

Browse files
committed
0.27
1 parent 34df077 commit d8dc401

File tree

9 files changed

+24
-20
lines changed

9 files changed

+24
-20
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fyrox"
3-
version = "0.26.0"
3+
version = "0.27.0"
44
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
55
edition = "2021"
66
license = "MIT"
@@ -37,10 +37,10 @@ opt-level = 3
3737
debug = true
3838

3939
[dependencies]
40-
fyrox-core = { path = "fyrox-core", version = "0.20.0", features = ["serde"] }
41-
fyrox-sound = { path = "fyrox-sound", version = "0.27.0" }
42-
fyrox-ui = { path = "fyrox-ui", version = "0.17.0" }
43-
fyrox-resource = { path = "fyrox-resource", version = "0.4.0" }
40+
fyrox-core = { path = "fyrox-core", version = "0.21.0", features = ["serde"] }
41+
fyrox-sound = { path = "fyrox-sound", version = "0.28.0" }
42+
fyrox-ui = { path = "fyrox-ui", version = "0.18.0" }
43+
fyrox-resource = { path = "fyrox-resource", version = "0.5.0" }
4444
rapier2d = { version = "0.14", features = ["debug-render"] }
4545
rapier3d = { version = "0.14", features = ["debug-render"] }
4646
image = { version = "0.24.1", default-features = false, features = ["gif", "jpeg", "png", "tga", "tiff", "bmp"] }

editor-standalone/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fyroxed"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
license = "MIT"
55
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
66
edition = "2021"
@@ -13,5 +13,5 @@ readme = "README.md"
1313
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"]
1414

1515
[dependencies]
16-
fyrox = { version = "0.26", path = "../" }
17-
fyroxed_base = { version = "0.13.0", path = "../editor" }
16+
fyrox = { version = "0.27", path = "../" }
17+
fyroxed_base = { version = "0.14.0", path = "../editor" }

editor-standalone/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# FyroxEd (standalone)
22

3+
**WARNING:** Standalone version of the editor is not supported, use
4+
[project template generator](https://fyrox-book.github.io/fyrox/beginning/scripting.html) to utilize the full power
5+
of the editor. Standalone version does not support plugins and scripts, it won't be update in next releases!
6+
37
A standalone version of FyroxEd - native editor of [Fyrox engine](https://github.com/FyroxEngine/Fyrox). The standalone
48
version allows you only to create and edit scenes, but **not run your game in the editor**. Please see
59
[the book](https://fyrox-book.github.io/) to learn how to use the editor in different ways.

editor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fyroxed_base"
33
license = "MIT"
4-
version = "0.13.0"
4+
version = "0.14.0"
55
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
66
edition = "2021"
77
rust-version = "1.56"
@@ -13,7 +13,7 @@ readme = "README.md"
1313
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md", "/resources/**/*"]
1414

1515
[dependencies]
16-
fyrox = { version = "0.26", path = ".." }
16+
fyrox = { version = "0.27", path = ".." }
1717
lazy_static = "1.4.0"
1818
ron = "0.7.0"
1919
serde = "^1.0.0"

fyrox-core-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fyrox-core-derive"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
authors = ["toyboot4e <toyboot4e@gmail.com>, Dmitry Stepanov <d1maxa@yandex.ru>"]
55
edition = "2021"
66
license = "MIT"

fyrox-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fyrox-core"
3-
version = "0.20.0"
3+
version = "0.21.0"
44
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
55
edition = "2021"
66
license = "MIT"
@@ -16,7 +16,7 @@ resolver = "2"
1616
rust-version = "1.56"
1717

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

2121
base64 = "0.13.0"
2222
byteorder = "1.4.3"

fyrox-resource/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fyrox-resource"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
55
edition = "2021"
66
license = "MIT"
@@ -15,4 +15,4 @@ resolver = "2"
1515
rust-version = "1.56"
1616

1717
[dependencies]
18-
fyrox-core = { path = "../fyrox-core", version = "0.20.0" }
18+
fyrox-core = { path = "../fyrox-core", version = "0.21.0" }

fyrox-sound/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fyrox-sound"
3-
version = "0.27.0"
3+
version = "0.28.0"
44
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
55
edition = "2021"
66
license = "MIT"
@@ -16,8 +16,8 @@ resolver = "2"
1616
rust-version = "1.56"
1717

1818
[dependencies]
19-
fyrox-core = { path = "../fyrox-core", version = "0.20.0" }
20-
fyrox-resource = { path = "../fyrox-resource", version = "0.4.0" }
19+
fyrox-core = { path = "../fyrox-core", version = "0.21.0" }
20+
fyrox-resource = { path = "../fyrox-resource", version = "0.5.0" }
2121
lewton = "0.10.2"
2222
hrtf = "0.8.0"
2323
hound = "3.4.0"

fyrox-ui/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fyrox-ui"
3-
version = "0.17.0"
3+
version = "0.18.0"
44
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
55
edition = "2021"
66
license = "MIT"
@@ -16,7 +16,7 @@ resolver = "2"
1616
rust-version = "1.56"
1717

1818
[dependencies]
19-
fyrox-core = { path = "../fyrox-core", version = "0.20.0" }
19+
fyrox-core = { path = "../fyrox-core", version = "0.21.0" }
2020
lazy_static = "1.4.0"
2121
copypasta = "0.8.1"
2222
fontdue = "0.7.2"

0 commit comments

Comments
 (0)