From 40ea3dabff991843396d4703d485169d0dd90845 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 18 Sep 2024 02:38:49 +0200 Subject: Bump version to `0.13.0` :tada: --- futures/src/subscription.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'futures') diff --git a/futures/src/subscription.rs b/futures/src/subscription.rs index d2a0c3f8..946995d8 100644 --- a/futures/src/subscription.rs +++ b/futures/src/subscription.rs @@ -190,7 +190,7 @@ impl Subscription { /// Check out the [`websocket`] example, which showcases this pattern to maintain a `WebSocket` /// connection open. /// - /// [`websocket`]: https://github.com/iced-rs/iced/tree/0.12/examples/websocket + /// [`websocket`]: https://github.com/iced-rs/iced/tree/0.13/examples/websocket pub fn run(builder: fn() -> S) -> Self where S: Stream + MaybeSend + 'static, @@ -317,9 +317,9 @@ impl std::fmt::Debug for Subscription { /// - [`stopwatch`], a watch with start/stop and reset buttons showcasing how /// to listen to time. /// -/// [examples]: https://github.com/iced-rs/iced/tree/0.12/examples -/// [`download_progress`]: https://github.com/iced-rs/iced/tree/0.12/examples/download_progress -/// [`stopwatch`]: https://github.com/iced-rs/iced/tree/0.12/examples/stopwatch +/// [examples]: https://github.com/iced-rs/iced/tree/0.13/examples +/// [`download_progress`]: https://github.com/iced-rs/iced/tree/0.13/examples/download_progress +/// [`stopwatch`]: https://github.com/iced-rs/iced/tree/0.13/examples/stopwatch pub trait Recipe { /// The events that will be produced by a [`Subscription`] with this /// [`Recipe`]. -- cgit