Bump versions 🎉

This commit is contained in:
Héctor Ramón Jiménez 2023-07-28 19:48:39 +02:00
parent 78dc341ea8
commit 126aef88e7
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
24 changed files with 101 additions and 87 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "iced_futures"
version = "0.6.0"
version = "0.7.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021"
description = "Commands, subscriptions, and runtimes for Iced"
@ -17,7 +17,7 @@ thread-pool = ["futures/thread-pool"]
log = "0.4"
[dependencies.iced_core]
version = "0.9"
version = "0.10"
path = "../core"
[dependencies.futures]

View file

@ -128,9 +128,9 @@ impl<Message> std::fmt::Debug for Subscription<Message> {
/// - [`stopwatch`], a watch with start/stop and reset buttons showcasing how
/// to listen to time.
///
/// [examples]: https://github.com/iced-rs/iced/tree/0.9/examples
/// [`download_progress`]: https://github.com/iced-rs/iced/tree/0.9/examples/download_progress
/// [`stopwatch`]: https://github.com/iced-rs/iced/tree/0.9/examples/stopwatch
/// [examples]: https://github.com/iced-rs/iced/tree/0.10/examples
/// [`download_progress`]: https://github.com/iced-rs/iced/tree/0.10/examples/download_progress
/// [`stopwatch`]: https://github.com/iced-rs/iced/tree/0.10/examples/stopwatch
pub trait Recipe {
/// The events that will be produced by a [`Subscription`] with this
/// [`Recipe`].
@ -413,7 +413,7 @@ where
/// Check out the [`websocket`] example, which showcases this pattern to maintain a WebSocket
/// connection open.
///
/// [`websocket`]: https://github.com/iced-rs/iced/tree/0.9/examples/websocket
/// [`websocket`]: https://github.com/iced-rs/iced/tree/0.10/examples/websocket
pub fn channel<I, Fut, Message>(
id: I,
size: usize,