From eed8e84ae3edfd2d47da71ba7121806a65fd922c Mon Sep 17 00:00:00 2001 From: "RChangelog[bot]" <155627257+RChangelog[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 00:33:40 +0000 Subject: [PATCH] chore: Release --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- core/Cargo.toml | 10 +++++----- dev-helper/Cargo.toml | 8 ++++---- gpu/Cargo.toml | 6 +++--- macros/Cargo.toml | 4 ++-- painter/Cargo.toml | 4 ++-- ribir/Cargo.toml | 8 ++++---- text/Cargo.toml | 6 +++--- themes/material/Cargo.toml | 4 ++-- widgets/Cargo.toml | 4 ++-- 11 files changed, 32 insertions(+), 29 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12aecc3a2..f89e19fcf 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.3.0-alpha.2] - 2024-04-03 + ### Features - **ribir**: support stable Rust 1.77.0 (#552 @M-Adoo) @@ -129,4 +131,5 @@ 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.3.0-alpha.1...HEAD +[@Unreleased]: https://github.com/RibirX/Ribir/compare/ribir-v0.3.0-alpha.2...HEAD +[0.3.0-alpha.2]: https://github.com/RibirX/Ribir/compare/ribir-v0.3.0-alpha.1...ribir-v0.3.0-alpha.2 diff --git a/Cargo.toml b/Cargo.toml index 6ea417231..095ed3ce6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ homepage = "https://ribir.org" keywords = ["gui", "ui", "declarative", "compose-ui"] license = "MIT" readme = "README.md" -version = "0.3.0-alpha.1" +version = "0.3.0-alpha.2" package.rust-version = "1.77.0" [workspace.dependencies] diff --git a/core/Cargo.toml b/core/Cargo.toml index c1136e4cd..d41134640 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -25,11 +25,11 @@ lyon_geom.workspace = true once_cell.workspace = true paste.workspace = true pin-project-lite.workspace = true -ribir_algo = {path = "../algo", version = "0.3.0-alpha.1" } -ribir_geom = {path = "../geom", version = "0.3.0-alpha.1" } -ribir_macros = {path = "../macros", version = "0.3.0-alpha.1" } -ribir_painter = {path = "../painter", version = "0.3.0-alpha.1" } -ribir_text = {path = "../text", version = "0.3.0-alpha.1" } +ribir_algo = {path = "../algo", version = "0.3.0-alpha.2" } +ribir_geom = {path = "../geom", version = "0.3.0-alpha.2" } +ribir_macros = {path = "../macros", version = "0.3.0-alpha.2" } +ribir_painter = {path = "../painter", version = "0.3.0-alpha.2" } +ribir_text = {path = "../text", version = "0.3.0-alpha.2" } rxrust.workspace = true smallvec.workspace = true winit.workspace = true diff --git a/dev-helper/Cargo.toml b/dev-helper/Cargo.toml index 3d503450d..56f206c82 100644 --- a/dev-helper/Cargo.toml +++ b/dev-helper/Cargo.toml @@ -16,11 +16,11 @@ version.workspace = true [dependencies] dssim-core.workspace = true futures.workspace = true -ribir_geom = {path = "../geom", version = "0.3.0-alpha.1" } -ribir_gpu = {path = "../gpu", version = "0.3.0-alpha.1" } -ribir_painter = {path = "../painter", features = ["png"], version = "0.3.0-alpha.1" } +ribir_geom = {path = "../geom", version = "0.3.0-alpha.2" } +ribir_gpu = {path = "../gpu", version = "0.3.0-alpha.2" } +ribir_painter = {path = "../painter", features = ["png"], version = "0.3.0-alpha.2" } [dev-dependencies] colored.workspace = true paste.workspace = true -ribir_core = {path = "../core", version = "0.3.0-alpha.1" } +ribir_core = {path = "../core", version = "0.3.0-alpha.2" } diff --git a/gpu/Cargo.toml b/gpu/Cargo.toml index e94246d58..c80fe931b 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.3.0-alpha.1" } -ribir_geom = {path = "../geom", version = "0.3.0-alpha.1" } -ribir_painter = {path = "../painter", features = ["tessellation"], version = "0.3.0-alpha.1" } +ribir_algo = {path = "../algo", version = "0.3.0-alpha.2" } +ribir_geom = {path = "../geom", version = "0.3.0-alpha.2" } +ribir_painter = {path = "../painter", features = ["tessellation"], version = "0.3.0-alpha.2" } slab = "0.4.8" wgpu = {workspace = true, optional = true} zerocopy = {workspace=true, features = ["derive"]} diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 8bedb06e9..da4ef9973 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -21,11 +21,11 @@ bitflags.workspace = true lazy_static.workspace = true proc-macro2.workspace = true quote.workspace = true -ribir_painter = {path = "../painter", version = "0.3.0-alpha.1" } +ribir_painter = {path = "../painter", version = "0.3.0-alpha.2" } smallvec.workspace = true syn = { workspace = true, features = ["fold", "full", "extra-traits"]} phf = { workspace = true, features = ["macros"] } [features] -nightly = [] \ No newline at end of file +nightly = [] diff --git a/painter/Cargo.toml b/painter/Cargo.toml index 324278b66..fec5bda41 100644 --- a/painter/Cargo.toml +++ b/painter/Cargo.toml @@ -20,8 +20,8 @@ lyon_algorithms = {version = "1.0.3", features = ["serialization"]} lyon_tessellation = {version = "1.0.3", features = ["serialization"], optional = true} material-color-utilities-rs = {workspace = true} rctree.workspace = true -ribir_algo = {path = "../algo", version = "0.3.0-alpha.1" } -ribir_geom = {path = "../geom", version = "0.3.0-alpha.1" } +ribir_algo = {path = "../algo", version = "0.3.0-alpha.2" } +ribir_geom = {path = "../geom", version = "0.3.0-alpha.2" } serde = {version = "1.0", features = ["rc", "derive"]} serde_json.workspace = true tiny-skia-path = {workspace = true} diff --git a/ribir/Cargo.toml b/ribir/Cargo.toml index 024c5a66c..a8ac053ea 100644 --- a/ribir/Cargo.toml +++ b/ribir/Cargo.toml @@ -15,10 +15,10 @@ version.workspace = true [dependencies] arboard = "3.2.0" once_cell.workspace = true -ribir_core = { path = "../core", version = "0.3.0-alpha.1" } -ribir_gpu = { path = "../gpu", version = "0.3.0-alpha.1" } -ribir_material = { path = "../themes/material", version = "0.3.0-alpha.1", optional = true } -ribir_widgets = { path = "../widgets", version = "0.3.0-alpha.1", optional = true } +ribir_core = { path = "../core", version = "0.3.0-alpha.2" } +ribir_gpu = { path = "../gpu", version = "0.3.0-alpha.2" } +ribir_material = { path = "../themes/material", version = "0.3.0-alpha.2", optional = true } +ribir_widgets = { path = "../widgets", version = "0.3.0-alpha.2", optional = true } rxrust.workspace = true wgpu = { workspace = true, optional = true } winit.workspace = true diff --git a/text/Cargo.toml b/text/Cargo.toml index a6777c99d..83817304e 100644 --- a/text/Cargo.toml +++ b/text/Cargo.toml @@ -20,9 +20,9 @@ fontdb.workspace = true log.workspace = true lyon_path.workspace = true ordered-float.workspace = true -ribir_algo = {path = "../algo", version = "0.3.0-alpha.1" } -ribir_geom = {path = "../geom", version = "0.3.0-alpha.1" } -ribir_painter = {path = "../painter", version = "0.3.0-alpha.1" } +ribir_algo = {path = "../algo", version = "0.3.0-alpha.2" } +ribir_geom = {path = "../geom", version = "0.3.0-alpha.2" } +ribir_painter = {path = "../painter", version = "0.3.0-alpha.2" } rustybuzz.workspace = true unicode-bidi.workspace = true unicode-script.workspace = true diff --git a/themes/material/Cargo.toml b/themes/material/Cargo.toml index 40ab38361..96ebc0329 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.3.0-alpha.1" } -ribir_widgets = {path = "../../widgets", version = "0.3.0-alpha.1" } +ribir_core = {path = "../../core", version = "0.3.0-alpha.2" } +ribir_widgets = {path = "../../widgets", version = "0.3.0-alpha.2" } diff --git a/widgets/Cargo.toml b/widgets/Cargo.toml index b18e2cf6d..8541b62c0 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.3.0-alpha.1" } -ribir_geom = {path = "../geom", version = "0.3.0-alpha.1" } +ribir_core = {path = "../core", version = "0.3.0-alpha.2" } +ribir_geom = {path = "../geom", version = "0.3.0-alpha.2" } webbrowser.workspace = true [dev-dependencies]