Bump version to 0.13.0 🎉
This commit is contained in:
parent
5a51d19e27
commit
40ea3dabff
9 changed files with 28 additions and 27 deletions
|
|
@ -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
|
||||
|
|
|
|||
24
Cargo.toml
24
Cargo.toml
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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`].
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
)]
|
||||
|
|
|
|||
|
|
@ -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>,
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue