Bump versions 🎉

This commit is contained in:
Héctor Ramón Jiménez 2022-05-02 21:53:25 +02:00
parent 990c050080
commit d23026d2dd
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
12 changed files with 58 additions and 45 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "iced" name = "iced"
version = "0.3.0" version = "0.4.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021" edition = "2021"
description = "A cross-platform GUI library inspired by Elm" description = "A cross-platform GUI library inspired by Elm"
@ -98,21 +98,21 @@ members = [
] ]
[dependencies] [dependencies]
iced_core = { version = "0.4", path = "core" } iced_core = { version = "0.5", path = "core" }
iced_futures = { version = "0.3", path = "futures" } iced_futures = { version = "0.4", path = "futures" }
iced_native = { version = "0.4", path = "native" } iced_native = { version = "0.5", path = "native" }
iced_graphics = { version = "0.2", path = "graphics" } iced_graphics = { version = "0.3", path = "graphics" }
iced_winit = { version = "0.3", path = "winit" } iced_winit = { version = "0.4", path = "winit" }
iced_glutin = { version = "0.2", path = "glutin", optional = true } iced_glutin = { version = "0.3", path = "glutin", optional = true }
iced_glow = { version = "0.2", path = "glow", optional = true } iced_glow = { version = "0.3", path = "glow", optional = true }
iced_pure = { version = "0.1", path = "pure", optional = true } iced_pure = { version = "0.2", path = "pure", optional = true }
thiserror = "1.0" thiserror = "1.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
iced_wgpu = { version = "0.4", path = "wgpu", optional = true } iced_wgpu = { version = "0.5", path = "wgpu", optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies] [target.'cfg(target_arch = "wasm32")'.dependencies]
iced_wgpu = { version = "0.4", path = "wgpu", features = ["webgl"], optional = true } iced_wgpu = { version = "0.5", path = "wgpu", features = ["webgl"], optional = true }
[package.metadata.docs.rs] [package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"] rustdoc-args = ["--cfg", "docsrs"]

View file

@ -1,6 +1,6 @@
[package] [package]
name = "iced_core" name = "iced_core"
version = "0.4.0" version = "0.5.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021" edition = "2021"
description = "The essential concepts of Iced" description = "The essential concepts of Iced"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "iced_futures" name = "iced_futures"
version = "0.3.0" version = "0.4.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021" edition = "2021"
description = "Commands, subscriptions, and runtimes for Iced" description = "Commands, subscriptions, and runtimes for Iced"

View file

@ -1,11 +1,11 @@
[package] [package]
name = "iced_glow" name = "iced_glow"
version = "0.2.0" version = "0.3.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021" edition = "2021"
description = "A glow renderer for iced" description = "A glow renderer for iced"
license = "MIT AND OFL-1.1" license = "MIT AND OFL-1.1"
repository = "https://github.com/hecrj/iced" repository = "https://github.com/iced-rs/iced"
[features] [features]
canvas = ["iced_graphics/canvas"] canvas = ["iced_graphics/canvas"]
@ -24,11 +24,11 @@ bytemuck = "1.4"
log = "0.4" log = "0.4"
[dependencies.iced_native] [dependencies.iced_native]
version = "0.4" version = "0.5"
path = "../native" path = "../native"
[dependencies.iced_graphics] [dependencies.iced_graphics]
version = "0.2" version = "0.3"
path = "../graphics" path = "../graphics"
features = ["font-fallback", "font-icons", "opengl"] features = ["font-fallback", "font-icons", "opengl"]

View file

@ -1,6 +1,6 @@
[package] [package]
name = "iced_glutin" name = "iced_glutin"
version = "0.2.0" version = "0.3.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021" edition = "2021"
description = "A glutin runtime for Iced" description = "A glutin runtime for Iced"
@ -19,14 +19,14 @@ git = "https://github.com/iced-rs/glutin"
rev = "7a0ee02782eb2bf059095e0c953c4bb53f1eef0e" rev = "7a0ee02782eb2bf059095e0c953c4bb53f1eef0e"
[dependencies.iced_native] [dependencies.iced_native]
version = "0.4" version = "0.5"
path = "../native" path = "../native"
[dependencies.iced_winit] [dependencies.iced_winit]
version = "0.3" version = "0.4"
path = "../winit" path = "../winit"
[dependencies.iced_graphics] [dependencies.iced_graphics]
version = "0.2" version = "0.3"
path = "../graphics" path = "../graphics"
features = ["opengl"] features = ["opengl"]

View file

@ -1,11 +1,11 @@
[package] [package]
name = "iced_graphics" name = "iced_graphics"
version = "0.2.0" version = "0.3.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021" edition = "2021"
description = "A bunch of backend-agnostic types that can be leveraged to build a renderer for Iced" description = "A bunch of backend-agnostic types that can be leveraged to build a renderer for Iced"
license = "MIT" license = "MIT"
repository = "https://github.com/hecrj/iced" repository = "https://github.com/iced-rs/iced"
documentation = "https://docs.rs/iced_graphics" documentation = "https://docs.rs/iced_graphics"
keywords = ["gui", "ui", "graphics", "interface", "widgets"] keywords = ["gui", "ui", "graphics", "interface", "widgets"]
categories = ["gui"] categories = ["gui"]
@ -29,15 +29,15 @@ version = "1.4"
features = ["derive"] features = ["derive"]
[dependencies.iced_native] [dependencies.iced_native]
version = "0.4" version = "0.5"
path = "../native" path = "../native"
[dependencies.iced_style] [dependencies.iced_style]
version = "0.3" version = "0.4"
path = "../style" path = "../style"
[dependencies.iced_pure] [dependencies.iced_pure]
version = "0.1" version = "0.2"
path = "../pure" path = "../pure"
optional = true optional = true

View file

@ -1,7 +1,14 @@
[package] [package]
name = "iced_lazy" name = "iced_lazy"
version = "0.1.0" version = "0.1.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021" edition = "2021"
description = "Lazy widgets for Iced"
license = "MIT"
repository = "https://github.com/iced-rs/iced"
documentation = "https://docs.rs/iced_lazy"
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
categories = ["gui"]
[features] [features]
pure = ["iced_pure"] pure = ["iced_pure"]
@ -10,10 +17,10 @@ pure = ["iced_pure"]
ouroboros = "0.13" ouroboros = "0.13"
[dependencies.iced_native] [dependencies.iced_native]
version = "0.4" version = "0.5"
path = "../native" path = "../native"
[dependencies.iced_pure] [dependencies.iced_pure]
version = "0.1" version = "0.2"
path = "../pure" path = "../pure"
optional = true optional = true

View file

@ -1,6 +1,6 @@
[package] [package]
name = "iced_native" name = "iced_native"
version = "0.4.0" version = "0.5.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021" edition = "2021"
description = "A renderer-agnostic library for native GUIs" description = "A renderer-agnostic library for native GUIs"
@ -16,14 +16,14 @@ unicode-segmentation = "1.6"
num-traits = "0.2" num-traits = "0.2"
[dependencies.iced_core] [dependencies.iced_core]
version = "0.4" version = "0.5"
path = "../core" path = "../core"
[dependencies.iced_futures] [dependencies.iced_futures]
version = "0.3" version = "0.4"
path = "../futures" path = "../futures"
features = ["thread-pool"] features = ["thread-pool"]
[dependencies.iced_style] [dependencies.iced_style]
version = "0.3" version = "0.4"
path = "../style" path = "../style"

View file

@ -1,9 +1,15 @@
[package] [package]
name = "iced_pure" name = "iced_pure"
version = "0.1.0" version = "0.2.0"
edition = "2021" edition = "2021"
description = "Pure widgets for Iced"
license = "MIT"
repository = "https://github.com/iced-rs/iced"
documentation = "https://docs.rs/iced_pure"
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
categories = ["gui"]
[dependencies] [dependencies]
iced_native = { version = "0.4", path = "../native" } iced_native = { version = "0.5", path = "../native" }
iced_style = { version = "0.3", path = "../style" } iced_style = { version = "0.4", path = "../style" }
num-traits = "0.2" num-traits = "0.2"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "iced_style" name = "iced_style"
version = "0.3.0" version = "0.4.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021" edition = "2021"
description = "The default set of styles of Iced" description = "The default set of styles of Iced"
@ -11,5 +11,5 @@ keywords = ["gui", "ui", "graphics", "interface", "widgets"]
categories = ["gui"] categories = ["gui"]
[dependencies.iced_core] [dependencies.iced_core]
version = "0.4" version = "0.5"
path = "../core" path = "../core"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "iced_wgpu" name = "iced_wgpu"
version = "0.4.0" version = "0.5.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021" edition = "2021"
description = "A wgpu renderer for Iced" description = "A wgpu renderer for Iced"
@ -43,11 +43,11 @@ version = "1.4"
features = ["derive"] features = ["derive"]
[dependencies.iced_native] [dependencies.iced_native]
version = "0.4" version = "0.5"
path = "../native" path = "../native"
[dependencies.iced_graphics] [dependencies.iced_graphics]
version = "0.2" version = "0.3"
path = "../graphics" path = "../graphics"
features = ["font-fallback", "font-icons"] features = ["font-fallback", "font-icons"]

View file

@ -1,11 +1,11 @@
[package] [package]
name = "iced_winit" name = "iced_winit"
version = "0.3.0" version = "0.4.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021" edition = "2021"
description = "A winit runtime for Iced" description = "A winit runtime for Iced"
license = "MIT" license = "MIT"
repository = "https://github.com/hecrj/iced" repository = "https://github.com/iced-rs/iced"
documentation = "https://docs.rs/iced_winit" documentation = "https://docs.rs/iced_winit"
keywords = ["gui", "ui", "graphics", "interface", "widgets"] keywords = ["gui", "ui", "graphics", "interface", "widgets"]
categories = ["gui"] categories = ["gui"]
@ -24,15 +24,15 @@ git = "https://github.com/iced-rs/winit"
rev = "02a12380960cec2f351c09a33d6a7cc2789d96a6" rev = "02a12380960cec2f351c09a33d6a7cc2789d96a6"
[dependencies.iced_native] [dependencies.iced_native]
version = "0.4" version = "0.5"
path = "../native" path = "../native"
[dependencies.iced_graphics] [dependencies.iced_graphics]
version = "0.2" version = "0.3"
path = "../graphics" path = "../graphics"
[dependencies.iced_futures] [dependencies.iced_futures]
version = "0.3" version = "0.4"
path = "../futures" path = "../futures"
[target.'cfg(target_os = "windows")'.dependencies.winapi] [target.'cfg(target_os = "windows")'.dependencies.winapi]