summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-07-28 19:48:39 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-07-28 19:48:39 +0200
commit126aef88e7647c4690055b4c96aee46ecadcf60e (patch)
tree3fea494e812839fa4c2034c6cb7468d36ccc3980 /src
parent78dc341ea82449f1e075e37e67c1ccf66b88e8d6 (diff)
downloadiced-126aef88e7647c4690055b4c96aee46ecadcf60e.tar.gz
iced-126aef88e7647c4690055b4c96aee46ecadcf60e.tar.bz2
iced-126aef88e7647c4690055b4c96aee46ecadcf60e.zip
Bump versions :tada:
Diffstat (limited to 'src')
-rw-r--r--src/application.rs18
-rw-r--r--src/lib.rs8
-rw-r--r--src/sandbox.rs22
3 files changed, 24 insertions, 24 deletions
diff --git a/src/application.rs b/src/application.rs
index abf58fa3..9518b8c5 100644
--- a/src/application.rs
+++ b/src/application.rs
@@ -39,15 +39,15 @@ pub use crate::style::application::{Appearance, StyleSheet};
/// to listen to time.
/// - [`todos`], a todos tracker inspired by [TodoMVC].
///
-/// [The repository has a bunch of examples]: https://github.com/iced-rs/iced/tree/0.9/examples
-/// [`clock`]: https://github.com/iced-rs/iced/tree/0.9/examples/clock
-/// [`download_progress`]: https://github.com/iced-rs/iced/tree/0.9/examples/download_progress
-/// [`events`]: https://github.com/iced-rs/iced/tree/0.9/examples/events
-/// [`game_of_life`]: https://github.com/iced-rs/iced/tree/0.9/examples/game_of_life
-/// [`pokedex`]: https://github.com/iced-rs/iced/tree/0.9/examples/pokedex
-/// [`solar_system`]: https://github.com/iced-rs/iced/tree/0.9/examples/solar_system
-/// [`stopwatch`]: https://github.com/iced-rs/iced/tree/0.9/examples/stopwatch
-/// [`todos`]: https://github.com/iced-rs/iced/tree/0.9/examples/todos
+/// [The repository has a bunch of examples]: https://github.com/iced-rs/iced/tree/0.10/examples
+/// [`clock`]: https://github.com/iced-rs/iced/tree/0.10/examples/clock
+/// [`download_progress`]: https://github.com/iced-rs/iced/tree/0.10/examples/download_progress
+/// [`events`]: https://github.com/iced-rs/iced/tree/0.10/examples/events
+/// [`game_of_life`]: https://github.com/iced-rs/iced/tree/0.10/examples/game_of_life
+/// [`pokedex`]: https://github.com/iced-rs/iced/tree/0.10/examples/pokedex
+/// [`solar_system`]: https://github.com/iced-rs/iced/tree/0.10/examples/solar_system
+/// [`stopwatch`]: https://github.com/iced-rs/iced/tree/0.10/examples/stopwatch
+/// [`todos`]: https://github.com/iced-rs/iced/tree/0.10/examples/todos
/// [`Sandbox`]: crate::Sandbox
/// [`Canvas`]: crate::widget::Canvas
/// [PokéAPI]: https://pokeapi.co/
diff --git a/src/lib.rs b/src/lib.rs
index 0905a31c..19e7456e 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -24,13 +24,13 @@
//! [scrollables]: https://gfycat.com/perkybaggybaboon-rust-gui
//! [Debug overlay with performance metrics]: https://gfycat.com/incredibledarlingbee
//! [Modular ecosystem]: https://github.com/iced-rs/iced/blob/master/ECOSYSTEM.md
-//! [renderer-agnostic native runtime]: https://github.com/iced-rs/iced/tree/0.9/native
+//! [renderer-agnostic native runtime]: https://github.com/iced-rs/iced/tree/0.10/runtime
//! [`wgpu`]: https://github.com/gfx-rs/wgpu-rs
-//! [built-in renderer]: https://github.com/iced-rs/iced/tree/0.9/wgpu
-//! [windowing shell]: https://github.com/iced-rs/iced/tree/0.9/winit
+//! [built-in renderer]: https://github.com/iced-rs/iced/tree/0.10/wgpu
+//! [windowing shell]: https://github.com/iced-rs/iced/tree/0.10/winit
//! [`dodrio`]: https://github.com/fitzgen/dodrio
//! [web runtime]: https://github.com/iced-rs/iced_web
-//! [examples]: https://github.com/iced-rs/iced/tree/0.9/examples
+//! [examples]: https://github.com/iced-rs/iced/tree/0.10/examples
//! [repository]: https://github.com/iced-rs/iced
//!
//! # Overview
diff --git a/src/sandbox.rs b/src/sandbox.rs
index cca327b6..825a0b60 100644
--- a/src/sandbox.rs
+++ b/src/sandbox.rs
@@ -34,19 +34,19 @@ use crate::{Application, Command, Element, Error, Settings, Subscription};
/// - [`tour`], a simple UI tour that can run both on native platforms and the
/// web!
///
-/// [The repository has a bunch of examples]: https://github.com/iced-rs/iced/tree/0.9/examples
-/// [`bezier_tool`]: https://github.com/iced-rs/iced/tree/0.9/examples/bezier_tool
-/// [`counter`]: https://github.com/iced-rs/iced/tree/0.9/examples/counter
-/// [`custom_widget`]: https://github.com/iced-rs/iced/tree/0.9/examples/custom_widget
-/// [`geometry`]: https://github.com/iced-rs/iced/tree/0.9/examples/geometry
-/// [`pane_grid`]: https://github.com/iced-rs/iced/tree/0.9/examples/pane_grid
-/// [`progress_bar`]: https://github.com/iced-rs/iced/tree/0.9/examples/progress_bar
-/// [`styling`]: https://github.com/iced-rs/iced/tree/0.9/examples/styling
-/// [`svg`]: https://github.com/iced-rs/iced/tree/0.9/examples/svg
-/// [`tour`]: https://github.com/iced-rs/iced/tree/0.9/examples/tour
+/// [The repository has a bunch of examples]: https://github.com/iced-rs/iced/tree/0.10/examples
+/// [`bezier_tool`]: https://github.com/iced-rs/iced/tree/0.10/examples/bezier_tool
+/// [`counter`]: https://github.com/iced-rs/iced/tree/0.10/examples/counter
+/// [`custom_widget`]: https://github.com/iced-rs/iced/tree/0.10/examples/custom_widget
+/// [`geometry`]: https://github.com/iced-rs/iced/tree/0.10/examples/geometry
+/// [`pane_grid`]: https://github.com/iced-rs/iced/tree/0.10/examples/pane_grid
+/// [`progress_bar`]: https://github.com/iced-rs/iced/tree/0.10/examples/progress_bar
+/// [`styling`]: https://github.com/iced-rs/iced/tree/0.10/examples/styling
+/// [`svg`]: https://github.com/iced-rs/iced/tree/0.10/examples/svg
+/// [`tour`]: https://github.com/iced-rs/iced/tree/0.10/examples/tour
/// [`Canvas widget`]: crate::widget::Canvas
/// [the overview]: index.html#overview
-/// [`iced_wgpu`]: https://github.com/iced-rs/iced/tree/0.9/wgpu
+/// [`iced_wgpu`]: https://github.com/iced-rs/iced/tree/0.10/wgpu
/// [`Svg` widget]: crate::widget::Svg
/// [Ghostscript Tiger]: https://commons.wikimedia.org/wiki/File:Ghostscript_Tiger.svg
///