Bump version to 0.13.0 🎉

This commit is contained in:
Héctor Ramón Jiménez 2024-09-18 02:38:49 +02:00
parent 5a51d19e27
commit 40ea3dabff
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
9 changed files with 28 additions and 27 deletions

View file

@ -971,7 +971,8 @@ Many thanks to...
### Added ### Added
- First release! :tada: - 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.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.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 [0.10.0]: https://github.com/iced-rs/iced/compare/0.9.0...0.10.0

View file

@ -116,7 +116,7 @@ members = [
] ]
[workspace.package] [workspace.package]
version = "0.13.0-dev" version = "0.13.0"
authors = ["Héctor Ramón Jiménez <hector@hecrj.dev>"] authors = ["Héctor Ramón Jiménez <hector@hecrj.dev>"]
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
@ -126,17 +126,17 @@ categories = ["gui"]
keywords = ["gui", "ui", "graphics", "interface", "widgets"] keywords = ["gui", "ui", "graphics", "interface", "widgets"]
[workspace.dependencies] [workspace.dependencies]
iced = { version = "0.13.0-dev", path = "." } iced = { version = "0.13.0", path = "." }
iced_core = { version = "0.13.0-dev", path = "core" } iced_core = { version = "0.13.0", path = "core" }
iced_futures = { version = "0.13.0-dev", path = "futures" } iced_futures = { version = "0.13.0", path = "futures" }
iced_graphics = { version = "0.13.0-dev", path = "graphics" } iced_graphics = { version = "0.13.0", path = "graphics" }
iced_highlighter = { version = "0.13.0-dev", path = "highlighter" } iced_highlighter = { version = "0.13.0", path = "highlighter" }
iced_renderer = { version = "0.13.0-dev", path = "renderer" } iced_renderer = { version = "0.13.0", path = "renderer" }
iced_runtime = { version = "0.13.0-dev", path = "runtime" } iced_runtime = { version = "0.13.0", path = "runtime" }
iced_tiny_skia = { version = "0.13.0-dev", path = "tiny_skia" } iced_tiny_skia = { version = "0.13.0", path = "tiny_skia" }
iced_wgpu = { version = "0.13.0-dev", path = "wgpu" } iced_wgpu = { version = "0.13.0", path = "wgpu" }
iced_widget = { version = "0.13.0-dev", path = "widget" } iced_widget = { version = "0.13.0", path = "widget" }
iced_winit = { version = "0.13.0-dev", path = "winit" } iced_winit = { version = "0.13.0", path = "winit" }
async-std = "1.0" async-std = "1.0"
bitflags = "2.0" bitflags = "2.0"

View file

@ -33,12 +33,12 @@ use crate::{Clipboard, Length, Rectangle, Shell, Size, Vector};
/// - [`geometry`], a custom widget showcasing how to draw geometry with the /// - [`geometry`], a custom widget showcasing how to draw geometry with the
/// `Mesh2D` primitive in [`iced_wgpu`]. /// `Mesh2D` primitive in [`iced_wgpu`].
/// ///
/// [examples]: https://github.com/iced-rs/iced/tree/0.12/examples /// [examples]: https://github.com/iced-rs/iced/tree/0.13/examples
/// [`bezier_tool`]: https://github.com/iced-rs/iced/tree/0.12/examples/bezier_tool /// [`bezier_tool`]: https://github.com/iced-rs/iced/tree/0.13/examples/bezier_tool
/// [`custom_widget`]: https://github.com/iced-rs/iced/tree/0.12/examples/custom_widget /// [`custom_widget`]: https://github.com/iced-rs/iced/tree/0.13/examples/custom_widget
/// [`geometry`]: https://github.com/iced-rs/iced/tree/0.12/examples/geometry /// [`geometry`]: https://github.com/iced-rs/iced/tree/0.13/examples/geometry
/// [`lyon`]: https://github.com/nical/lyon /// [`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> pub trait Widget<Message, Theme, Renderer>
where where
Renderer: crate::Renderer, Renderer: crate::Renderer,

View file

@ -190,7 +190,7 @@ impl<T> Subscription<T> {
/// Check out the [`websocket`] example, which showcases this pattern to maintain a `WebSocket` /// Check out the [`websocket`] example, which showcases this pattern to maintain a `WebSocket`
/// connection open. /// 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 pub fn run<S>(builder: fn() -> S) -> Self
where where
S: Stream<Item = T> + MaybeSend + 'static, 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 /// - [`stopwatch`], a watch with start/stop and reset buttons showcasing how
/// to listen to time. /// to listen to time.
/// ///
/// [examples]: https://github.com/iced-rs/iced/tree/0.12/examples /// [examples]: https://github.com/iced-rs/iced/tree/0.13/examples
/// [`download_progress`]: https://github.com/iced-rs/iced/tree/0.12/examples/download_progress /// [`download_progress`]: https://github.com/iced-rs/iced/tree/0.13/examples/download_progress
/// [`stopwatch`]: https://github.com/iced-rs/iced/tree/0.12/examples/stopwatch /// [`stopwatch`]: https://github.com/iced-rs/iced/tree/0.13/examples/stopwatch
pub trait Recipe { pub trait Recipe {
/// The events that will be produced by a [`Subscription`] with this /// The events that will be produced by a [`Subscription`] with this
/// [`Recipe`]. /// [`Recipe`].

View file

@ -4,7 +4,7 @@
//! //!
//! `iced_runtime` takes [`iced_core`] and builds a native runtime on top of it. //! `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( #![doc(
html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg" html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg"
)] )]

View file

@ -19,7 +19,7 @@ use crate::overlay;
/// The [`integration`] example uses a [`UserInterface`] to integrate Iced in an /// The [`integration`] example uses a [`UserInterface`] to integrate Iced in an
/// existing graphical application. /// 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)] #[allow(missing_debug_implementations)]
pub struct UserInterface<'a, Message, Theme, Renderer> { pub struct UserInterface<'a, Message, Theme, Renderer> {
root: Element<'a, Message, Theme, Renderer>, root: Element<'a, Message, Theme, Renderer>,

View file

@ -6,7 +6,7 @@
//! The [`pane_grid` example] showcases how to use a [`PaneGrid`] with resizing, //! The [`pane_grid` example] showcases how to use a [`PaneGrid`] with resizing,
//! drag and drop, and hotkey support. //! 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 axis;
mod configuration; mod configuration;
mod content; mod content;

View file

@ -1,7 +1,7 @@
//! Convert [`winit`] types into [`iced_runtime`] types, and viceversa. //! Convert [`winit`] types into [`iced_runtime`] types, and viceversa.
//! //!
//! [`winit`]: https://github.com/rust-windowing/winit //! [`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::keyboard;
use crate::core::mouse; use crate::core::mouse;
use crate::core::touch; use crate::core::touch;

View file

@ -11,7 +11,7 @@
//! Additionally, a [`conversion`] module is available for users that decide to //! Additionally, a [`conversion`] module is available for users that decide to
//! implement a custom event loop. //! 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 //! [`winit`]: https://github.com/rust-windowing/winit
//! [`conversion`]: crate::conversion //! [`conversion`]: crate::conversion
#![doc( #![doc(