From 8569cdcb5f75a32dc2747f13af742c82f38d0e0a Mon Sep 17 00:00:00 2001 From: "RChangelog[bot]" <155627257+RChangelog[bot]@users.noreply.github.com> Date: Wed, 15 Jan 2025 00:44:14 +0000 Subject: [PATCH] chore: Release --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- cli/Cargo.toml | 2 +- core/Cargo.toml | 8 ++++---- dev-helper/Cargo.toml | 6 +++--- gpu/Cargo.toml | 6 +++--- macros/Cargo.toml | 2 +- painter/Cargo.toml | 4 ++-- ribir/Cargo.toml | 10 +++++----- themes/material/Cargo.toml | 4 ++-- themes/ribir_slim/Cargo.toml | 4 ++-- widgets/Cargo.toml | 4 ++-- 12 files changed, 30 insertions(+), 27 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79dd25138..9419df807 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,8 @@ Please only add new entries below the [Unreleased](#unreleased---releasedate) he ## [@Unreleased] - @ReleaseDate +## [0.4.0-alpha.23] - 2025-01-15 + ### Features - **core**: The `Render::dirty_phase` method has been added to allow widgets to mark only the paint phase as dirty when it is modified. (#689 @M-Adoo) @@ -594,7 +596,8 @@ We are very happy to share it with you. We hope you can try it out and give us f - **get started**: add the `get_started` series of tutorials to help users get started with Ribir. -[@Unreleased]: https://github.com/RibirX/Ribir/compare/ribir-v0.4.0-alpha.22...HEAD +[@Unreleased]: https://github.com/RibirX/Ribir/compare/ribir-v0.4.0-alpha.23...HEAD +[0.4.0-alpha.23]: https://github.com/RibirX/Ribir/compare/ribir-v0.4.0-alpha.22...ribir-v0.4.0-alpha.23 [0.4.0-alpha.22]: https://github.com/RibirX/Ribir/compare/ribir-v0.4.0-alpha.21...ribir-v0.4.0-alpha.22 [0.4.0-alpha.21]: https://github.com/RibirX/Ribir/compare/ribir-v0.4.0-alpha.20...ribir-v0.4.0-alpha.21 [0.4.0-alpha.20]: https://github.com/RibirX/Ribir/compare/ribir-v0.4.0-alpha.19...ribir-v0.4.0-alpha.20 diff --git a/Cargo.toml b/Cargo.toml index 982ece5d5..189c5d7f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ homepage = "https://ribir.org" keywords = ["gui", "ui", "declarative", "compose-ui"] license = "MIT" readme = "README.md" -version = "0.4.0-alpha.22" +version = "0.4.0-alpha.23" rust-version = "1.81.0" [workspace.dependencies] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 5334d236d..9e44c27ec 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli" -version = "0.4.0-alpha.22" +version = "0.4.0-alpha.23" edition = "2021" publish = false diff --git a/core/Cargo.toml b/core/Cargo.toml index 1fad5cec3..0dfb1f4e4 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -23,10 +23,10 @@ lyon_geom.workspace = true paste.workspace = true triomphe.workspace = true pin-project-lite.workspace = true -ribir_algo = {path = "../algo", version = "0.4.0-alpha.22" } -ribir_geom = {path = "../geom", version = "0.4.0-alpha.22" } -ribir_macros = {path = "../macros", version = "0.4.0-alpha.22" } -ribir_painter = {path = "../painter", version = "0.4.0-alpha.22" } +ribir_algo = {path = "../algo", version = "0.4.0-alpha.23" } +ribir_geom = {path = "../geom", version = "0.4.0-alpha.23" } +ribir_macros = {path = "../macros", version = "0.4.0-alpha.23" } +ribir_painter = {path = "../painter", version = "0.4.0-alpha.23" } rxrust.workspace = true smallvec.workspace = true winit.workspace = true diff --git a/dev-helper/Cargo.toml b/dev-helper/Cargo.toml index ad13b17e8..86d2514b8 100644 --- a/dev-helper/Cargo.toml +++ b/dev-helper/Cargo.toml @@ -15,9 +15,9 @@ version.workspace = true [dependencies] futures.workspace = true -ribir_geom = {path = "../geom", version = "0.4.0-alpha.22" } -ribir_gpu = {path = "../gpu", version = "0.4.0-alpha.22" } -ribir_painter = {path = "../painter", features = ["png"], version = "0.4.0-alpha.22" } +ribir_geom = {path = "../geom", version = "0.4.0-alpha.23" } +ribir_gpu = {path = "../gpu", version = "0.4.0-alpha.23" } +ribir_painter = {path = "../painter", features = ["png"], version = "0.4.0-alpha.23" } image.workspace = true dssim-core.workspace = true diff --git a/gpu/Cargo.toml b/gpu/Cargo.toml index 58bc3382c..e204cd161 100644 --- a/gpu/Cargo.toml +++ b/gpu/Cargo.toml @@ -18,9 +18,9 @@ futures = {workspace = true, optional = true} guillotiere.workspace = true log.workspace = true rayon.workspace = true -ribir_algo = {path = "../algo", version = "0.4.0-alpha.22" } -ribir_geom = {path = "../geom", version = "0.4.0-alpha.22" } -ribir_painter = {path = "../painter", features = ["tessellation"], version = "0.4.0-alpha.22" } +ribir_algo = {path = "../algo", version = "0.4.0-alpha.23" } +ribir_geom = {path = "../geom", version = "0.4.0-alpha.23" } +ribir_painter = {path = "../painter", features = ["tessellation"], version = "0.4.0-alpha.23" } slab = "0.4.9" wgpu = {workspace = true, optional = true} zerocopy = {workspace=true, features = ["derive"]} diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 27034def3..03c976f28 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -20,7 +20,7 @@ ahash.workspace = true bitflags.workspace = true proc-macro2.workspace = true quote.workspace = true -ribir_painter = {path = "../painter", version = "0.4.0-alpha.22" } +ribir_painter = {path = "../painter", version = "0.4.0-alpha.23" } smallvec = { workspace = true, features= ["drain_filter"] } syn = { workspace = true, features = ["fold", "full", "extra-traits"]} phf = { workspace = true, features = ["macros"] } diff --git a/painter/Cargo.toml b/painter/Cargo.toml index 6a1b4b84d..3ce274ea9 100644 --- a/painter/Cargo.toml +++ b/painter/Cargo.toml @@ -19,8 +19,8 @@ log.workspace = true lyon_algorithms = {version = "1.0.3", features = ["serialization"]} lyon_tessellation = {version = "1.0.3", features = ["serialization"], optional = true} material-color-utilities-rs = {workspace = true} -ribir_algo = {path = "../algo", version = "0.4.0-alpha.22" } -ribir_geom = {path = "../geom", version = "0.4.0-alpha.22" } +ribir_algo = {path = "../algo", version = "0.4.0-alpha.23" } +ribir_geom = {path = "../geom", version = "0.4.0-alpha.23" } serde = {version = "1.0", features = ["derive"]} serde_json.workspace = true usvg.workspace = true diff --git a/ribir/Cargo.toml b/ribir/Cargo.toml index 45b5a201c..e5c351868 100644 --- a/ribir/Cargo.toml +++ b/ribir/Cargo.toml @@ -13,11 +13,11 @@ repository = "https://github.com/RibirX/Ribir" version.workspace = true [dependencies] -ribir_algo = { path = "../algo", version = "0.4.0-alpha.22" } -ribir_core = { path = "../core", version = "0.4.0-alpha.22" } -ribir_gpu = { path = "../gpu", version = "0.4.0-alpha.22" } -ribir_material = { path = "../themes/material", version = "0.4.0-alpha.22", optional = true } -ribir_widgets = { path = "../widgets", version = "0.4.0-alpha.22", optional = true } +ribir_algo = { path = "../algo", version = "0.4.0-alpha.23" } +ribir_core = { path = "../core", version = "0.4.0-alpha.23" } +ribir_gpu = { path = "../gpu", version = "0.4.0-alpha.23" } +ribir_material = { path = "../themes/material", version = "0.4.0-alpha.23", optional = true } +ribir_widgets = { path = "../widgets", version = "0.4.0-alpha.23", optional = true } rxrust.workspace = true wgpu = { workspace = true, optional = true } winit.workspace = true diff --git a/themes/material/Cargo.toml b/themes/material/Cargo.toml index d143a1aff..55a8ef2fd 100644 --- a/themes/material/Cargo.toml +++ b/themes/material/Cargo.toml @@ -13,5 +13,5 @@ repository = "https://github.com/RibirX/Ribir/themes/material" version.workspace = true [dependencies] -ribir_core = {path = "../../core", version = "0.4.0-alpha.22" } -ribir_widgets = {path = "../../widgets", version = "0.4.0-alpha.22" } +ribir_core = {path = "../../core", version = "0.4.0-alpha.23" } +ribir_widgets = {path = "../../widgets", version = "0.4.0-alpha.23" } diff --git a/themes/ribir_slim/Cargo.toml b/themes/ribir_slim/Cargo.toml index dd67c7155..935fc354d 100644 --- a/themes/ribir_slim/Cargo.toml +++ b/themes/ribir_slim/Cargo.toml @@ -14,5 +14,5 @@ version.workspace = true publish = false [dependencies] -ribir_core = {path = "../../core", version = "0.4.0-alpha.22" } -ribir_widgets = {path = "../../widgets", version = "0.4.0-alpha.22" } +ribir_core = {path = "../../core", version = "0.4.0-alpha.23" } +ribir_widgets = {path = "../../widgets", version = "0.4.0-alpha.23" } diff --git a/widgets/Cargo.toml b/widgets/Cargo.toml index 11d4e7890..b216be054 100644 --- a/widgets/Cargo.toml +++ b/widgets/Cargo.toml @@ -17,8 +17,8 @@ version.workspace = true [dependencies] lyon_algorithms.workspace = true lyon_path.workspace = true -ribir_core = {path = "../core", version = "0.4.0-alpha.22" } -ribir_geom = {path = "../geom", version = "0.4.0-alpha.22" } +ribir_core = {path = "../core", version = "0.4.0-alpha.23" } +ribir_geom = {path = "../geom", version = "0.4.0-alpha.23" } webbrowser.workspace = true [dev-dependencies]