Remove dev pre-release label

This commit is contained in:
Héctor Ramón Jiménez 2025-12-07 20:47:06 +01:00
parent a90f523e71
commit 3997291f31
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
2 changed files with 37 additions and 37 deletions

View file

@ -155,7 +155,7 @@ members = [
]
[workspace.package]
version = "0.14.0-dev"
version = "0.14.0"
authors = ["Héctor Ramón Jiménez <hector@hecrj.dev>"]
edition = "2024"
license = "MIT"
@ -166,24 +166,24 @@ keywords = ["gui", "ui", "graphics", "interface", "widgets"]
rust-version = "1.88"
[workspace.dependencies]
iced = { version = "0.14.0-dev", path = "." }
iced_beacon = { version = "0.14.0-dev", path = "beacon" }
iced_core = { version = "0.14.0-dev", path = "core" }
iced_debug = { version = "0.14.0-dev", path = "debug" }
iced_devtools = { version = "0.14.0-dev", path = "devtools" }
iced_futures = { version = "0.14.0-dev", path = "futures" }
iced_graphics = { version = "0.14.0-dev", path = "graphics" }
iced_highlighter = { version = "0.14.0-dev", path = "highlighter" }
iced_program = { version = "0.14.0-dev", path = "program" }
iced_renderer = { version = "0.14.0-dev", path = "renderer" }
iced_runtime = { version = "0.14.0-dev", path = "runtime" }
iced_selector = { version = "0.14.0-dev", path = "selector" }
iced_test = { version = "0.14.0-dev", path = "test" }
iced_tester = { version = "0.14.0-dev", path = "tester" }
iced_tiny_skia = { version = "0.14.0-dev", path = "tiny_skia", default-features = false }
iced_wgpu = { version = "0.14.0-dev", path = "wgpu", default-features = false }
iced_widget = { version = "0.14.0-dev", path = "widget" }
iced_winit = { version = "0.14.0-dev", path = "winit", default-features = false }
iced = { version = "0.14.0", path = "." }
iced_beacon = { version = "0.14.0", path = "beacon" }
iced_core = { version = "0.14.0", path = "core" }
iced_debug = { version = "0.14.0", path = "debug" }
iced_devtools = { version = "0.14.0", path = "devtools" }
iced_futures = { version = "0.14.0", path = "futures" }
iced_graphics = { version = "0.14.0", path = "graphics" }
iced_highlighter = { version = "0.14.0", path = "highlighter" }
iced_program = { version = "0.14.0", path = "program" }
iced_renderer = { version = "0.14.0", path = "renderer" }
iced_runtime = { version = "0.14.0", path = "runtime" }
iced_selector = { version = "0.14.0", path = "selector" }
iced_test = { version = "0.14.0", path = "test" }
iced_tester = { version = "0.14.0", path = "tester" }
iced_tiny_skia = { version = "0.14.0", path = "tiny_skia", default-features = false }
iced_wgpu = { version = "0.14.0", path = "wgpu", default-features = false }
iced_widget = { version = "0.14.0", path = "widget" }
iced_winit = { version = "0.14.0", path = "winit", default-features = false }
bincode = "1.3"
bitflags = "2.0"