Skip to content

Commit f78108a

Browse files
committed
Bump versions 🎉
1 parent 745aa49 commit f78108a

File tree

17 files changed

+33
-33
lines changed

17 files changed

+33
-33
lines changed

Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "A cross-platform GUI library inspired by Elm"
@@ -84,18 +84,18 @@ members = [
8484
]
8585

8686
[dependencies]
87-
iced_core = { version = "0.2", path = "core" }
88-
iced_futures = { version = "0.1", path = "futures" }
87+
iced_core = { version = "0.3", path = "core" }
88+
iced_futures = { version = "0.2", path = "futures" }
8989
thiserror = "1.0"
9090

9191
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
92-
iced_winit = { version = "0.1", path = "winit" }
92+
iced_winit = { version = "0.2", path = "winit" }
9393
iced_glutin = { version = "0.1", path = "glutin", optional = true }
94-
iced_wgpu = { version = "0.2", path = "wgpu", optional = true }
94+
iced_wgpu = { version = "0.3", path = "wgpu", optional = true }
9595
iced_glow = { version = "0.1", path = "glow", optional = true}
9696

9797
[target.'cfg(target_arch = "wasm32")'.dependencies]
98-
iced_web = { version = "0.2", path = "web" }
98+
iced_web = { version = "0.3", path = "web" }
9999

100100
[package.metadata.docs.rs]
101101
rustdoc-args = ["--cfg", "docsrs"]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ __Iced is currently experimental software.__ [Take a look at the roadmap],
5555
Add `iced` as a dependency in your `Cargo.toml`:
5656

5757
```toml
58-
iced = "0.1"
58+
iced = "0.2"
5959
```
6060

6161
__Iced moves fast and the `master` branch can contain breaking changes!__ If

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.2.1"
3+
version = "0.3.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "The essential concepts of Iced"

core/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This crate is meant to be a starting point for an Iced runtime.
1818
Add `iced_core` as a dependency in your `Cargo.toml`:
1919

2020
```toml
21-
iced_core = "0.2"
21+
iced_core = "0.3"
2222
```
2323

2424
__Iced moves fast and the `master` branch can contain breaking changes!__ If

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.1.2"
3+
version = "0.2.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "Commands, subscriptions, and runtimes for Iced"

glow/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ bytemuck = "1.4"
2424
log = "0.4"
2525

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

3030
[dependencies.iced_graphics]

glutin/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ debug = ["iced_winit/debug"]
1717
glutin = "0.25"
1818

1919
[dependencies.iced_native]
20-
version = "0.2"
20+
version = "0.3"
2121
path = "../native"
2222

2323
[dependencies.iced_winit]
24-
version = "0.1"
24+
version = "0.2"
2525
path = "../winit"
2626

2727
[dependencies.iced_graphics]

graphics/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ version = "1.4"
2828
features = ["derive"]
2929

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

3434
[dependencies.iced_style]
35-
version = "0.1"
35+
version = "0.2"
3636
path = "../style"
3737

3838
[dependencies.lyon]

native/Cargo.toml

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

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

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

native/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ To achieve this, it introduces a bunch of reusable interfaces:
2828
Add `iced_native` as a dependency in your `Cargo.toml`:
2929

3030
```toml
31-
iced_native = "0.2"
31+
iced_native = "0.3"
3232
```
3333

3434
__Iced moves fast and the `master` branch can contain breaking changes!__ If

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.1.0"
3+
version = "0.2.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "The default set of styles of Iced"
@@ -11,4 +11,4 @@ keywords = ["gui", "ui", "graphics", "interface", "widgets"]
1111
categories = ["gui"]
1212

1313
[dependencies]
14-
iced_core = { version = "0.2", path = "../core" }
14+
iced_core = { version = "0.3", path = "../core" }

web/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced_web"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "A web backend for Iced"
@@ -22,15 +22,15 @@ url = "2.0"
2222
num-traits = "0.2"
2323

2424
[dependencies.iced_core]
25-
version = "0.2"
25+
version = "0.3"
2626
path = "../core"
2727

2828
[dependencies.iced_futures]
29-
version = "0.1"
29+
version = "0.2"
3030
path = "../futures"
3131

3232
[dependencies.iced_style]
33-
version = "0.1"
33+
version = "0.2"
3434
path = "../style"
3535

3636
[dependencies.web-sys]

web/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The crate is currently a __very experimental__, simple abstraction layer over [`
1616
Add `iced_web` as a dependency in your `Cargo.toml`:
1717

1818
```toml
19-
iced_web = "0.2"
19+
iced_web = "0.3"
2020
```
2121

2222
__Iced moves fast and the `master` branch can contain breaking changes!__ If

wgpu/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced_wgpu"
3-
version = "0.2.2"
3+
version = "0.3.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "A wgpu renderer for Iced"
@@ -27,7 +27,7 @@ version = "1.4"
2727
features = ["derive"]
2828

2929
[dependencies.iced_native]
30-
version = "0.2"
30+
version = "0.3"
3131
path = "../native"
3232

3333
[dependencies.iced_graphics]

wgpu/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Currently, `iced_wgpu` supports the following primitives:
2929
Add `iced_wgpu` as a dependency in your `Cargo.toml`:
3030

3131
```toml
32-
iced_wgpu = "0.2"
32+
iced_wgpu = "0.3"
3333
```
3434

3535
__Iced moves fast and the `master` branch can contain breaking changes!__ If

winit/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced_winit"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "A winit runtime for Iced"
@@ -20,15 +20,15 @@ log = "0.4"
2020
thiserror = "1.0"
2121

2222
[dependencies.iced_native]
23-
version = "0.2"
23+
version = "0.3"
2424
path = "../native"
2525

2626
[dependencies.iced_graphics]
2727
version = "0.1"
2828
path = "../graphics"
2929

3030
[dependencies.iced_futures]
31-
version = "0.1"
31+
version = "0.2"
3232
path = "../futures"
3333

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

winit/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ It exposes a renderer-agnostic `Application` trait that can be implemented and t
2020
Add `iced_winit` as a dependency in your `Cargo.toml`:
2121

2222
```toml
23-
iced_winit = "0.1"
23+
iced_winit = "0.2"
2424
```
2525

2626
__Iced moves fast and the `master` branch can contain breaking changes!__ If

0 commit comments

Comments
 (0)