diff options
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | Cargo.toml | 24 | ||||
-rw-r--r-- | core/src/widget.rs | 10 | ||||
-rw-r--r-- | futures/src/subscription.rs | 8 | ||||
-rw-r--r-- | runtime/src/lib.rs | 2 | ||||
-rw-r--r-- | runtime/src/user_interface.rs | 2 | ||||
-rw-r--r-- | widget/src/pane_grid.rs | 2 | ||||
-rw-r--r-- | winit/src/conversion.rs | 2 | ||||
-rw-r--r-- | winit/src/lib.rs | 2 |
9 files changed, 28 insertions, 27 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0dbf8fbc..6addcc69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -971,7 +971,8 @@ Many thanks to... ### Added - First release! :tada: -[Unreleased]: https://github.com/iced-rs/iced/compare/0.12.1...HEAD +[Unreleased]: https://github.com/iced-rs/iced/compare/0.13.0...HEAD +[0.13.0]: https://github.com/iced-rs/iced/compare/0.12.1...0.13.0 [0.12.1]: https://github.com/iced-rs/iced/compare/0.12.0...0.12.1 [0.12.0]: https://github.com/iced-rs/iced/compare/0.10.0...0.12.0 [0.10.0]: https://github.com/iced-rs/iced/compare/0.9.0...0.10.0 @@ -116,7 +116,7 @@ members = [ ] [workspace.package] -version = "0.13.0-dev" +version = "0.13.0" authors = ["Héctor Ramón Jiménez <hector@hecrj.dev>"] edition = "2021" license = "MIT" @@ -126,17 +126,17 @@ categories = ["gui"] keywords = ["gui", "ui", "graphics", "interface", "widgets"] [workspace.dependencies] -iced = { version = "0.13.0-dev", path = "." } -iced_core = { version = "0.13.0-dev", path = "core" } -iced_futures = { version = "0.13.0-dev", path = "futures" } -iced_graphics = { version = "0.13.0-dev", path = "graphics" } -iced_highlighter = { version = "0.13.0-dev", path = "highlighter" } -iced_renderer = { version = "0.13.0-dev", path = "renderer" } -iced_runtime = { version = "0.13.0-dev", path = "runtime" } -iced_tiny_skia = { version = "0.13.0-dev", path = "tiny_skia" } -iced_wgpu = { version = "0.13.0-dev", path = "wgpu" } -iced_widget = { version = "0.13.0-dev", path = "widget" } -iced_winit = { version = "0.13.0-dev", path = "winit" } +iced = { version = "0.13.0", path = "." } +iced_core = { version = "0.13.0", path = "core" } +iced_futures = { version = "0.13.0", path = "futures" } +iced_graphics = { version = "0.13.0", path = "graphics" } +iced_highlighter = { version = "0.13.0", path = "highlighter" } +iced_renderer = { version = "0.13.0", path = "renderer" } +iced_runtime = { version = "0.13.0", path = "runtime" } +iced_tiny_skia = { version = "0.13.0", path = "tiny_skia" } +iced_wgpu = { version = "0.13.0", path = "wgpu" } +iced_widget = { version = "0.13.0", path = "widget" } +iced_winit = { version = "0.13.0", path = "winit" } async-std = "1.0" bitflags = "2.0" diff --git a/core/src/widget.rs b/core/src/widget.rs index c5beea54..9cfff83d 100644 --- a/core/src/widget.rs +++ b/core/src/widget.rs @@ -33,12 +33,12 @@ use crate::{Clipboard, Length, Rectangle, Shell, Size, Vector}; /// - [`geometry`], a custom widget showcasing how to draw geometry with the /// `Mesh2D` primitive in [`iced_wgpu`]. /// -/// [examples]: https://github.com/iced-rs/iced/tree/0.12/examples -/// [`bezier_tool`]: https://github.com/iced-rs/iced/tree/0.12/examples/bezier_tool -/// [`custom_widget`]: https://github.com/iced-rs/iced/tree/0.12/examples/custom_widget -/// [`geometry`]: https://github.com/iced-rs/iced/tree/0.12/examples/geometry +/// [examples]: https://github.com/iced-rs/iced/tree/0.13/examples +/// [`bezier_tool`]: https://github.com/iced-rs/iced/tree/0.13/examples/bezier_tool +/// [`custom_widget`]: https://github.com/iced-rs/iced/tree/0.13/examples/custom_widget +/// [`geometry`]: https://github.com/iced-rs/iced/tree/0.13/examples/geometry /// [`lyon`]: https://github.com/nical/lyon -/// [`iced_wgpu`]: https://github.com/iced-rs/iced/tree/0.12/wgpu +/// [`iced_wgpu`]: https://github.com/iced-rs/iced/tree/0.13/wgpu pub trait Widget<Message, Theme, Renderer> where Renderer: crate::Renderer, 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<T> Subscription<T> { /// 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<S>(builder: fn() -> S) -> Self where S: Stream<Item = T> + MaybeSend + 'static, @@ -317,9 +317,9 @@ impl<T> std::fmt::Debug for Subscription<T> { /// - [`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`]. diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 7230fc73..ae6d1dce 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -4,7 +4,7 @@ //! //! `iced_runtime` takes [`iced_core`] and builds a native runtime on top of it. //! -//! [`iced_core`]: https://github.com/iced-rs/iced/tree/0.12/core +//! [`iced_core`]: https://github.com/iced-rs/iced/tree/0.13/core #![doc( html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg" )] diff --git a/runtime/src/user_interface.rs b/runtime/src/user_interface.rs index 11ebb381..8dfc97a7 100644 --- a/runtime/src/user_interface.rs +++ b/runtime/src/user_interface.rs @@ -19,7 +19,7 @@ use crate::overlay; /// The [`integration`] example uses a [`UserInterface`] to integrate Iced in an /// existing graphical application. /// -/// [`integration`]: https://github.com/iced-rs/iced/tree/0.12/examples/integration +/// [`integration`]: https://github.com/iced-rs/iced/tree/0.13/examples/integration #[allow(missing_debug_implementations)] pub struct UserInterface<'a, Message, Theme, Renderer> { root: Element<'a, Message, Theme, Renderer>, diff --git a/widget/src/pane_grid.rs b/widget/src/pane_grid.rs index 710a5443..4473119d 100644 --- a/widget/src/pane_grid.rs +++ b/widget/src/pane_grid.rs @@ -6,7 +6,7 @@ //! The [`pane_grid` example] showcases how to use a [`PaneGrid`] with resizing, //! drag and drop, and hotkey support. //! -//! [`pane_grid` example]: https://github.com/iced-rs/iced/tree/0.12/examples/pane_grid +//! [`pane_grid` example]: https://github.com/iced-rs/iced/tree/0.13/examples/pane_grid mod axis; mod configuration; mod content; diff --git a/winit/src/conversion.rs b/winit/src/conversion.rs index 68f15b1a..43e1848b 100644 --- a/winit/src/conversion.rs +++ b/winit/src/conversion.rs @@ -1,7 +1,7 @@ //! Convert [`winit`] types into [`iced_runtime`] types, and viceversa. //! //! [`winit`]: https://github.com/rust-windowing/winit -//! [`iced_runtime`]: https://github.com/iced-rs/iced/tree/0.12/runtime +//! [`iced_runtime`]: https://github.com/iced-rs/iced/tree/0.13/runtime use crate::core::keyboard; use crate::core::mouse; use crate::core::touch; diff --git a/winit/src/lib.rs b/winit/src/lib.rs index 3c11b72a..ed2910d6 100644 --- a/winit/src/lib.rs +++ b/winit/src/lib.rs @@ -11,7 +11,7 @@ //! Additionally, a [`conversion`] module is available for users that decide to //! implement a custom event loop. //! -//! [`iced_runtime`]: https://github.com/iced-rs/iced/tree/0.12/runtime +//! [`iced_runtime`]: https://github.com/iced-rs/iced/tree/0.13/runtime //! [`winit`]: https://github.com/rust-windowing/winit //! [`conversion`]: crate::conversion #![doc( |