Skip to content

Commit d16b9cf

Browse files
authored
Merge pull request #637 from hecrj/0.2
Release `0.2` — Canvas interactivity, overlay support, a renderer alternative, and more!
2 parents b5c41a8 + f78108a commit d16b9cf

26 files changed

+68
-65
lines changed

Cargo.toml

Lines changed: 6 additions & 6 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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"

futures/src/subscription.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,9 @@ impl<I, O, H> std::fmt::Debug for Subscription<I, O, H> {
125125
/// - [`stopwatch`], a watch with start/stop and reset buttons showcasing how
126126
/// to listen to time.
127127
///
128-
/// [examples]: https://github.com/hecrj/iced/tree/0.1/examples
129-
/// [`download_progress`]: https://github.com/hecrj/iced/tree/0.1/examples/download_progress
130-
/// [`stopwatch`]: https://github.com/hecrj/iced/tree/0.1/examples/stopwatch
128+
/// [examples]: https://github.com/hecrj/iced/tree/0.2/examples
129+
/// [`download_progress`]: https://github.com/hecrj/iced/tree/0.2/examples/download_progress
130+
/// [`stopwatch`]: https://github.com/hecrj/iced/tree/0.2/examples/stopwatch
131131
pub trait Recipe<Hasher: std::hash::Hasher, Event> {
132132
/// The events that will be produced by a [`Subscription`] with this
133133
/// [`Recipe`].

glow/Cargo.toml

Lines changed: 1 addition & 1 deletion
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]

glow/src/widget/pane_grid.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//! The [`pane_grid` example] showcases how to use a [`PaneGrid`] with resizing,
77
//! drag and drop, and hotkey support.
88
//!
9-
//! [`pane_grid` example]: https://github.com/hecrj/iced/tree/0.1/examples/pane_grid
9+
//! [`pane_grid` example]: https://github.com/hecrj/iced/tree/0.2/examples/pane_grid
1010
use crate::Renderer;
1111

1212
pub use iced_native::pane_grid::{

glutin/Cargo.toml

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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]

0 commit comments

Comments
 (0)