Skip to content

Commit d23026d

Browse files
committed
Bump versions 🎉
1 parent 990c050 commit d23026d

File tree

12 files changed

+58
-45
lines changed

12 files changed

+58
-45
lines changed

Cargo.toml

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2021"
66
description = "A cross-platform GUI library inspired by Elm"
@@ -98,21 +98,21 @@ members = [
9898
]
9999

100100
[dependencies]
101-
iced_core = { version = "0.4", path = "core" }
102-
iced_futures = { version = "0.3", path = "futures" }
103-
iced_native = { version = "0.4", path = "native" }
104-
iced_graphics = { version = "0.2", path = "graphics" }
105-
iced_winit = { version = "0.3", path = "winit" }
106-
iced_glutin = { version = "0.2", path = "glutin", optional = true }
107-
iced_glow = { version = "0.2", path = "glow", optional = true }
108-
iced_pure = { version = "0.1", path = "pure", optional = true }
101+
iced_core = { version = "0.5", path = "core" }
102+
iced_futures = { version = "0.4", path = "futures" }
103+
iced_native = { version = "0.5", path = "native" }
104+
iced_graphics = { version = "0.3", path = "graphics" }
105+
iced_winit = { version = "0.4", path = "winit" }
106+
iced_glutin = { version = "0.3", path = "glutin", optional = true }
107+
iced_glow = { version = "0.3", path = "glow", optional = true }
108+
iced_pure = { version = "0.2", path = "pure", optional = true }
109109
thiserror = "1.0"
110110

111111
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
112-
iced_wgpu = { version = "0.4", path = "wgpu", optional = true }
112+
iced_wgpu = { version = "0.5", path = "wgpu", optional = true }
113113

114114
[target.'cfg(target_arch = "wasm32")'.dependencies]
115-
iced_wgpu = { version = "0.4", path = "wgpu", features = ["webgl"], optional = true }
115+
iced_wgpu = { version = "0.5", path = "wgpu", features = ["webgl"], optional = true }
116116

117117
[package.metadata.docs.rs]
118118
rustdoc-args = ["--cfg", "docsrs"]

core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced_core"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2021"
66
description = "The essential concepts of Iced"

futures/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced_futures"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2021"
66
description = "Commands, subscriptions, and runtimes for Iced"

glow/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "iced_glow"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2021"
66
description = "A glow renderer for iced"
77
license = "MIT AND OFL-1.1"
8-
repository = "https://github.com/hecrj/iced"
8+
repository = "https://github.com/iced-rs/iced"
99

1010
[features]
1111
canvas = ["iced_graphics/canvas"]
@@ -24,11 +24,11 @@ bytemuck = "1.4"
2424
log = "0.4"
2525

2626
[dependencies.iced_native]
27-
version = "0.4"
27+
version = "0.5"
2828
path = "../native"
2929

3030
[dependencies.iced_graphics]
31-
version = "0.2"
31+
version = "0.3"
3232
path = "../graphics"
3333
features = ["font-fallback", "font-icons", "opengl"]
3434

glutin/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced_glutin"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2021"
66
description = "A glutin runtime for Iced"
@@ -19,14 +19,14 @@ git = "https://github.com/iced-rs/glutin"
1919
rev = "7a0ee02782eb2bf059095e0c953c4bb53f1eef0e"
2020

2121
[dependencies.iced_native]
22-
version = "0.4"
22+
version = "0.5"
2323
path = "../native"
2424

2525
[dependencies.iced_winit]
26-
version = "0.3"
26+
version = "0.4"
2727
path = "../winit"
2828

2929
[dependencies.iced_graphics]
30-
version = "0.2"
30+
version = "0.3"
3131
path = "../graphics"
3232
features = ["opengl"]

graphics/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "iced_graphics"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2021"
66
description = "A bunch of backend-agnostic types that can be leveraged to build a renderer for Iced"
77
license = "MIT"
8-
repository = "https://github.com/hecrj/iced"
8+
repository = "https://github.com/iced-rs/iced"
99
documentation = "https://docs.rs/iced_graphics"
1010
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
1111
categories = ["gui"]
@@ -29,15 +29,15 @@ version = "1.4"
2929
features = ["derive"]
3030

3131
[dependencies.iced_native]
32-
version = "0.4"
32+
version = "0.5"
3333
path = "../native"
3434

3535
[dependencies.iced_style]
36-
version = "0.3"
36+
version = "0.4"
3737
path = "../style"
3838

3939
[dependencies.iced_pure]
40-
version = "0.1"
40+
version = "0.2"
4141
path = "../pure"
4242
optional = true
4343

lazy/Cargo.toml

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
[package]
22
name = "iced_lazy"
33
version = "0.1.0"
4+
authors = ["Héctor Ramón Jiménez <[email protected]>"]
45
edition = "2021"
6+
description = "Lazy widgets for Iced"
7+
license = "MIT"
8+
repository = "https://github.com/iced-rs/iced"
9+
documentation = "https://docs.rs/iced_lazy"
10+
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
11+
categories = ["gui"]
512

613
[features]
714
pure = ["iced_pure"]
@@ -10,10 +17,10 @@ pure = ["iced_pure"]
1017
ouroboros = "0.13"
1118

1219
[dependencies.iced_native]
13-
version = "0.4"
20+
version = "0.5"
1421
path = "../native"
1522

1623
[dependencies.iced_pure]
17-
version = "0.1"
24+
version = "0.2"
1825
path = "../pure"
1926
optional = true

native/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced_native"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2021"
66
description = "A renderer-agnostic library for native GUIs"
@@ -16,14 +16,14 @@ unicode-segmentation = "1.6"
1616
num-traits = "0.2"
1717

1818
[dependencies.iced_core]
19-
version = "0.4"
19+
version = "0.5"
2020
path = "../core"
2121

2222
[dependencies.iced_futures]
23-
version = "0.3"
23+
version = "0.4"
2424
path = "../futures"
2525
features = ["thread-pool"]
2626

2727
[dependencies.iced_style]
28-
version = "0.3"
28+
version = "0.4"
2929
path = "../style"

pure/Cargo.toml

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
[package]
22
name = "iced_pure"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
5+
description = "Pure widgets for Iced"
6+
license = "MIT"
7+
repository = "https://github.com/iced-rs/iced"
8+
documentation = "https://docs.rs/iced_pure"
9+
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
10+
categories = ["gui"]
511

612
[dependencies]
7-
iced_native = { version = "0.4", path = "../native" }
8-
iced_style = { version = "0.3", path = "../style" }
13+
iced_native = { version = "0.5", path = "../native" }
14+
iced_style = { version = "0.4", path = "../style" }
915
num-traits = "0.2"

style/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced_style"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2021"
66
description = "The default set of styles of Iced"
@@ -11,5 +11,5 @@ keywords = ["gui", "ui", "graphics", "interface", "widgets"]
1111
categories = ["gui"]
1212

1313
[dependencies.iced_core]
14-
version = "0.4"
14+
version = "0.5"
1515
path = "../core"

wgpu/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced_wgpu"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2021"
66
description = "A wgpu renderer for Iced"
@@ -43,11 +43,11 @@ version = "1.4"
4343
features = ["derive"]
4444

4545
[dependencies.iced_native]
46-
version = "0.4"
46+
version = "0.5"
4747
path = "../native"
4848

4949
[dependencies.iced_graphics]
50-
version = "0.2"
50+
version = "0.3"
5151
path = "../graphics"
5252
features = ["font-fallback", "font-icons"]
5353

winit/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "iced_winit"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2021"
66
description = "A winit runtime for Iced"
77
license = "MIT"
8-
repository = "https://github.com/hecrj/iced"
8+
repository = "https://github.com/iced-rs/iced"
99
documentation = "https://docs.rs/iced_winit"
1010
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
1111
categories = ["gui"]
@@ -24,15 +24,15 @@ git = "https://github.com/iced-rs/winit"
2424
rev = "02a12380960cec2f351c09a33d6a7cc2789d96a6"
2525

2626
[dependencies.iced_native]
27-
version = "0.4"
27+
version = "0.5"
2828
path = "../native"
2929

3030
[dependencies.iced_graphics]
31-
version = "0.2"
31+
version = "0.3"
3232
path = "../graphics"
3333

3434
[dependencies.iced_futures]
35-
version = "0.3"
35+
version = "0.4"
3636
path = "../futures"
3737

3838
[target.'cfg(target_os = "windows")'.dependencies.winapi]

0 commit comments

Comments
 (0)