Skip to content

Commit 70680d8

Browse files
committed
chore: Bump to 0.3.0-rc.3
1 parent 00b19bc commit 70680d8

File tree

14 files changed

+27
-27
lines changed

14 files changed

+27
-27
lines changed

Cargo.toml

+14-14
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,21 @@ docs = ["freya/docs"]
2828
# generational-box = { git = "https://github.com/ealmloff/dioxus", rev = "5c410876666710f0c497fd6d4033011ac37087bc" }
2929

3030
[workspace.dependencies]
31-
freya = { path = "crates/freya", version = "0.3.0-rc.2" }
32-
freya-devtools = { path = "crates/devtools", version = "0.3.0-rc.2" }
33-
freya-node-state = { path = "crates/state", version = "0.3.0-rc.2" }
34-
freya-winit = { path = "crates/winit", version = "0.3.0-rc.2" }
35-
freya-elements = { path = "crates/elements", version = "0.3.0-rc.2" }
36-
freya-common = { path = "crates/common", version = "0.3.0-rc.2" }
37-
freya-hooks = { path = "crates/hooks", version = "0.3.0-rc.2" }
38-
freya-core = { path = "crates/core", version = "0.3.0-rc.2" }
39-
freya-components = { path = "crates/components", version = "0.3.0-rc.2" }
40-
freya-testing = { path = "crates/testing", version = "0.3.0-rc.2" }
41-
freya-engine = { path = "crates/engine", version = "0.3.0-rc.2" }
42-
torin = { path = "crates/torin", version = "0.3.0-rc.2" }
31+
freya = { path = "crates/freya", version = "0.3.0-rc.3" }
32+
freya-devtools = { path = "crates/devtools", version = "0.3.0-rc.3" }
33+
freya-node-state = { path = "crates/state", version = "0.3.0-rc.3" }
34+
freya-winit = { path = "crates/winit", version = "0.3.0-rc.3" }
35+
freya-elements = { path = "crates/elements", version = "0.3.0-rc.3" }
36+
freya-common = { path = "crates/common", version = "0.3.0-rc.3" }
37+
freya-hooks = { path = "crates/hooks", version = "0.3.0-rc.3" }
38+
freya-core = { path = "crates/core", version = "0.3.0-rc.3" }
39+
freya-components = { path = "crates/components", version = "0.3.0-rc.3" }
40+
freya-testing = { path = "crates/testing", version = "0.3.0-rc.3" }
41+
freya-engine = { path = "crates/engine", version = "0.3.0-rc.3" }
42+
torin = { path = "crates/torin", version = "0.3.0-rc.3" }
4343

44-
freya-native-core-macro = { path = "crates/native-core-macro", version = "0.3.0-rc.2" }
45-
freya-native-core = { path = "crates/native-core", version = "0.3.0-rc.2" }
44+
freya-native-core-macro = { path = "crates/native-core-macro", version = "0.3.0-rc.3" }
45+
freya-native-core = { path = "crates/native-core", version = "0.3.0-rc.3" }
4646

4747
dioxus = { version = "0.6.3", default-features = false, features = ["macro", "signals", "hooks"] }
4848
dioxus-rsx = { version = "0.6.2" }

crates/components/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "freya-components"
33
description = "Components library desgined for Freya."
4-
version = "0.3.0-rc.2"
4+
version = "0.3.0-rc.3"
55
edition = "2021"
66
license = "MIT"
77
authors = ["Marc Espín <[email protected]>"]

crates/core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "freya-core"
33
description = "Internal core funcionatilies for Freya."
4-
version = "0.3.0-rc.2"
4+
version = "0.3.0-rc.3"
55
edition = "2021"
66
license = "MIT"
77
authors = ["Marc Espín <[email protected]>"]

crates/devtools/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "freya-devtools"
33
description = "Devtools panel integration for Freya."
4-
version = "0.3.0-rc.2"
4+
version = "0.3.0-rc.3"
55
edition = "2021"
66
license = "MIT"
77
authors = ["Marc Espín <[email protected]>"]

crates/elements/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "freya-elements"
33
description = "Internal elements, attributes and events designed for Freya."
4-
version = "0.3.0-rc.2"
4+
version = "0.3.0-rc.3"
55
edition = "2021"
66
license = "MIT"
77
authors = ["Marc Espín <[email protected]>"]

crates/engine/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "freya-engine"
33
description = "Abstract Freya's graphics APIs"
4-
version = "0.3.0-rc.2"
4+
version = "0.3.0-rc.3"
55
edition = "2021"
66
license = "MIT"
77
authors = ["Marc Espín <[email protected]>"]

crates/freya/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "freya"
33
description = "Cross-platform GUI Library powered by Dioxus and Skia."
4-
version = "0.3.0-rc.2"
4+
version = "0.3.0-rc.3"
55
edition = "2021"
66
license = "MIT"
77
authors = ["Marc Espín <[email protected]>"]

crates/hooks/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "freya-hooks"
33
description = "Hooks library designed for Freya."
4-
version = "0.3.0-rc.2"
4+
version = "0.3.0-rc.3"
55
edition = "2021"
66
license = "MIT"
77
authors = ["Marc Espín <[email protected]>"]

crates/native-core-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "freya-native-core-macro"
33
description = "Macro helper for native-core"
4-
version = "0.3.0-rc.2"
4+
version = "0.3.0-rc.3"
55
edition = "2021"
66
license = "MIT"
77
authors = ["Jonathan Kelley", "Evan Almloff", "Marc Espín <[email protected]>"]

crates/native-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "freya-native-core"
33
description = "Native DOM for Freya"
4-
version = "0.3.0-rc.2"
4+
version = "0.3.0-rc.3"
55
edition = "2021"
66
license = "MIT"
77
authors = ["Jonathan Kelley", "Evan Almloff", "Marc Espín <[email protected]>"]

crates/testing/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "freya-testing"
33
description = "Headless test runner for Freya."
4-
version = "0.3.0-rc.2"
4+
version = "0.3.0-rc.3"
55
edition = "2021"
66
license = "MIT"
77
authors = ["Marc Espín <[email protected]>"]

crates/torin/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "torin"
33
description = "UI layout Library designed for Freya."
4-
version = "0.3.0-rc.2"
4+
version = "0.3.0-rc.3"
55
edition = "2021"
66
license = "MIT"
77
authors = ["Marc Espín <[email protected]>"]

crates/winit/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "freya-winit"
33
description = "Winit renderer for Freya."
4-
version = "0.3.0-rc.2"
4+
version = "0.3.0-rc.3"
55
edition = "2021"
66
license = "MIT"
77
authors = ["Marc Espín <[email protected]>"]

examples/todo.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ fn app() -> Element {
9999
),
100100
Task::new("Improve docs".to_string(), State::Progress, Priority::High),
101101
Task::new(
102-
"Release Freya v0.3.0-rc.2".to_string(),
102+
"Release Freya v0.3.0-rc.3".to_string(),
103103
State::Done,
104104
Priority::High,
105105
),

0 commit comments

Comments
 (0)