Skip to content

Commit 9e9e2d7

Browse files
committed
1.0.1 + changelog
1 parent 0350d1d commit 9e9e2d7

25 files changed

Lines changed: 80 additions & 76 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.0.1
2+
3+
- Fixed unaligned read in the renderer on WebAssembly, that in some cases led to black screen on startup (#906).
4+
15
# 1.0.0
26

37
First stable release.

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 = "1.0.0"
3+
version = "1.0.1"
44
license = "MIT"
55
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
66
edition = "2021"
@@ -13,6 +13,6 @@ readme = "README.md"
1313
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"]
1414

1515
[dependencies]
16-
fyrox = { version = "1.0.0", path = "../fyrox" }
17-
fyroxed_base = { version = "1.0.0", path = "../editor" }
16+
fyrox = { version = "1.0.1", path = "../fyrox" }
17+
fyroxed_base = { version = "1.0.1", path = "../editor" }
1818
clap = { version = "4", features = ["derive"] }

editor/Cargo.toml

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

1515
[dependencies]
16-
fyrox = { version = "1.0.0", path = "../fyrox", default-features = false }
17-
fyrox-build-tools = { version = "1.0.0", path = "../fyrox-build-tools" }
16+
fyrox = { version = "1.0.1", path = "../fyrox", default-features = false }
17+
fyrox-build-tools = { version = "1.0.1", path = "../fyrox-build-tools" }
1818
ron = "0.11"
1919
serde = { version = "1", features = ["derive"] }
2020
toml = { version = "0.9", default-features = false, features = ["parse"] }

fyrox-animation/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-animation"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
55
edition = "2021"
66
license = "MIT"
@@ -15,8 +15,8 @@ readme = "README.md"
1515
rust-version = "1.87"
1616

1717
[dependencies]
18-
fyrox-core = { version = "1.0.0", path = "../fyrox-core" }
19-
fyrox-resource = { version = "1.0.0", path = "../fyrox-resource" }
18+
fyrox-core = { version = "1.0.1", path = "../fyrox-core" }
19+
fyrox-resource = { version = "1.0.1", path = "../fyrox-resource" }
2020
strum = "0.27"
2121
strum_macros = "0.27"
2222
fxhash = "0.2.1"

fyrox-autotile/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fyrox-autotile"
33
license = "MIT"
4-
version = "1.0.0"
4+
version = "1.0.1"
55
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>", "Brendan Guild <bguildjava@gmail.com>"]
66
edition = "2021"
77
rust-version = "1.87"

fyrox-build-tools/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fyrox-build-tools"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
edition = "2021"
55
license = "MIT"
66
description = "Build tools for Fyrox Engine"
@@ -13,9 +13,9 @@ repository = "https://github.com/FyroxEngine/Fyrox"
1313
rust-version = "1.87"
1414

1515
[dependencies]
16-
fyrox-core = { path = "../fyrox-core", version = "1.0.0" }
17-
fyrox-ui = { path = "../fyrox-ui", version = "1.0.0" }
18-
fyrox-resource = { path = "../fyrox-resource", version = "1.0.0" }
16+
fyrox-core = { path = "../fyrox-core", version = "1.0.1" }
17+
fyrox-ui = { path = "../fyrox-ui", version = "1.0.1" }
18+
fyrox-resource = { path = "../fyrox-resource", version = "1.0.1" }
1919
serde = { version = "1.0.215", features = ["derive"] }
2020
cargo_metadata = "0.22"
2121
open = "5"

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 = "1.0.0"
3+
version = "1.0.1"
44
authors = ["toyboot4e <toyboot4e@gmail.com>, Dmitry Stepanov <d1maxa@yandex.ru>"]
55
edition = "2021"
66
license = "MIT"

fyrox-core/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-core"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
55
edition = "2021"
66
license = "MIT"
@@ -15,8 +15,8 @@ readme = "README.md"
1515
rust-version = "1.87"
1616

1717
[dependencies]
18-
fyrox-core-derive = { path = "../fyrox-core-derive", version = "1.0.0" }
19-
fyrox-math = { path = "../fyrox-math", version = "1.0.0" }
18+
fyrox-core-derive = { path = "../fyrox-core-derive", version = "1.0.1" }
19+
fyrox-math = { path = "../fyrox-math", version = "1.0.1" }
2020
base64 = "0.22.1"
2121
byteorder = "1.4.3"
2222
rand = "0.8"

fyrox-dylib/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-dylib"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
edition = "2021"
55
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>", "Fyrox Engine Contributors"]
66
license = "MIT"
@@ -21,4 +21,4 @@ crate-type = ["dylib"]
2121
mesh_analysis = ["fyrox-impl/mesh_analysis"]
2222

2323
[dependencies]
24-
fyrox-impl = { path = "../fyrox-impl", version = "1.0.0" }
24+
fyrox-impl = { path = "../fyrox-impl", version = "1.0.1" }

fyrox-graph/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-graph"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
authors = ["Dmitry Stepanov <d1maxa@yandex.ru>"]
55
edition = "2021"
66
license = "MIT"
@@ -14,6 +14,6 @@ repository = "https://github.com/FyroxEngine/Fyrox"
1414
rust-version = "1.87"
1515

1616
[dependencies]
17-
fyrox-core = { path = "../fyrox-core", version = "1.0.0" }
18-
fyrox-resource = { path = "../fyrox-resource", version = "1.0.0" }
17+
fyrox-core = { path = "../fyrox-core", version = "1.0.1" }
18+
fyrox-resource = { path = "../fyrox-resource", version = "1.0.1" }
1919
fxhash = "0.2.1"

0 commit comments

Comments
 (0)