diff --git a/Cargo.toml b/Cargo.toml index 9db848c08..032d9025d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ homepage = "https://ribir.org" keywords = ["gui", "ui", "declarative", "compose-ui"] license = "MIT" readme = "README.md" -version = "0.3.0-alpha.5" +version = "0.3.0-beta.1" rust-version = "1.77.0" [workspace.dependencies] diff --git a/core/Cargo.toml b/core/Cargo.toml index 1b837431b..c69fcfac9 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -24,11 +24,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.5" } -ribir_geom = {path = "../geom", version = "0.3.0-alpha.5" } -ribir_macros = {path = "../macros", version = "0.3.0-alpha.5" } -ribir_painter = {path = "../painter", version = "0.3.0-alpha.5" } -ribir_text = {path = "../text", version = "0.3.0-alpha.5" } +ribir_algo = {path = "../algo", version = "0.3.0-beta.1" } +ribir_geom = {path = "../geom", version = "0.3.0-beta.1" } +ribir_macros = {path = "../macros", version = "0.3.0-beta.1" } +ribir_painter = {path = "../painter", version = "0.3.0-beta.1" } +ribir_text = {path = "../text", version = "0.3.0-beta.1" } rxrust.workspace = true smallvec.workspace = true winit.workspace = true diff --git a/dev-helper/Cargo.toml b/dev-helper/Cargo.toml index 70aa4ece3..6b0147d85 100644 --- a/dev-helper/Cargo.toml +++ b/dev-helper/Cargo.toml @@ -16,9 +16,9 @@ version.workspace = true [dependencies] futures.workspace = true once_cell.workspace = true -ribir_geom = {path = "../geom", version = "0.3.0-alpha.5" } -ribir_gpu = {path = "../gpu", version = "0.3.0-alpha.5" } -ribir_painter = {path = "../painter", features = ["png"], version = "0.3.0-alpha.5" } +ribir_geom = {path = "../geom", version = "0.3.0-beta.1" } +ribir_gpu = {path = "../gpu", version = "0.3.0-beta.1" } +ribir_painter = {path = "../painter", features = ["png"], version = "0.3.0-beta.1" } image.workspace = true dssim-core.workspace = true @@ -26,4 +26,4 @@ dssim-core.workspace = true [dev-dependencies] colored.workspace = true paste.workspace = true -ribir_core = {path = "../core", version = "0.3.0-alpha.5" } +ribir_core = {path = "../core", version = "0.3.0-beta.1" } diff --git a/gpu/Cargo.toml b/gpu/Cargo.toml index 814289e2c..70b0d7749 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.5" } -ribir_geom = {path = "../geom", version = "0.3.0-alpha.5" } -ribir_painter = {path = "../painter", features = ["tessellation"], version = "0.3.0-alpha.5" } +ribir_algo = {path = "../algo", version = "0.3.0-beta.1" } +ribir_geom = {path = "../geom", version = "0.3.0-beta.1" } +ribir_painter = {path = "../painter", features = ["tessellation"], version = "0.3.0-beta.1" } 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 e3a99ee70..d715fc4de 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -21,14 +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.5" } +ribir_painter = {path = "../painter", version = "0.3.0-beta.1" } smallvec.workspace = true syn = { workspace = true, features = ["fold", "full", "extra-traits"]} phf = { workspace = true, features = ["macros"] } -[dev-dependencies] -ribir = { path = "../ribir", version = "0.3.0-alpha.1" } - [features] nightly = [] diff --git a/macros/src/lib.rs b/macros/src/lib.rs index 88384a227..44c55a069 100644 --- a/macros/src/lib.rs +++ b/macros/src/lib.rs @@ -215,7 +215,7 @@ pub fn pipe(input: TokenStream) -> TokenStream { /// /// ## Example /// -/// ```rust +/// ```rust ignore /// use ribir::prelude::*; /// /// let label = Stateful::new(1); @@ -234,7 +234,7 @@ pub fn pipe(input: TokenStream) -> TokenStream { /// manually call unsubscribe at the appropriate time, typically in the /// `on_disposed` method of a widget. /// -/// ``` +/// ```rust ignore /// use ribir::prelude::*; /// /// let even = Stateful::new(1); diff --git a/painter/Cargo.toml b/painter/Cargo.toml index 6accacf9d..15bbc6508 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.5" } -ribir_geom = {path = "../geom", version = "0.3.0-alpha.5" } +ribir_algo = {path = "../algo", version = "0.3.0-beta.1" } +ribir_geom = {path = "../geom", version = "0.3.0-beta.1" } serde = {version = "1.0", features = ["derive"]} serde_json.workspace = true tiny-skia-path = {workspace = true} diff --git a/ribir/Cargo.toml b/ribir/Cargo.toml index 409d520c3..319494df0 100644 --- a/ribir/Cargo.toml +++ b/ribir/Cargo.toml @@ -14,11 +14,11 @@ version.workspace = true [dependencies] once_cell.workspace = true -ribir_algo = { path = "../algo", version = "0.3.0-alpha.5" } -ribir_core = { path = "../core", version = "0.3.0-alpha.5" } -ribir_gpu = { path = "../gpu", version = "0.3.0-alpha.5" } -ribir_material = { path = "../themes/material", version = "0.3.0-alpha.5", optional = true } -ribir_widgets = { path = "../widgets", version = "0.3.0-alpha.5", optional = true } +ribir_algo = { path = "../algo", version = "0.3.0-beta.1" } +ribir_core = { path = "../core", version = "0.3.0-beta.1" } +ribir_gpu = { path = "../gpu", version = "0.3.0-beta.1" } +ribir_material = { path = "../themes/material", version = "0.3.0-beta.1", optional = true } +ribir_widgets = { path = "../widgets", version = "0.3.0-beta.1", optional = true } rxrust.workspace = true wgpu = { workspace = true, optional = true } winit.workspace = true diff --git a/text/Cargo.toml b/text/Cargo.toml index 9dd6e110a..87d74ae4f 100644 --- a/text/Cargo.toml +++ b/text/Cargo.toml @@ -19,9 +19,9 @@ derive_more.workspace = true fontdb.workspace = true log.workspace = true ordered-float.workspace = true -ribir_algo = {path = "../algo", version = "0.3.0-alpha.5" } -ribir_geom = {path = "../geom", version = "0.3.0-alpha.5" } -ribir_painter = {path = "../painter", version = "0.3.0-alpha.5" } +ribir_algo = {path = "../algo", version = "0.3.0-beta.1" } +ribir_geom = {path = "../geom", version = "0.3.0-beta.1" } +ribir_painter = {path = "../painter", version = "0.3.0-beta.1" } rustybuzz.workspace = true unicode-bidi.workspace = true unicode-script.workspace = true diff --git a/themes/material/Cargo.toml b/themes/material/Cargo.toml index f7e587fb1..29fd9c2f2 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.5" } -ribir_widgets = {path = "../../widgets", version = "0.3.0-alpha.5" } +ribir_core = {path = "../../core", version = "0.3.0-beta.1" } +ribir_widgets = {path = "../../widgets", version = "0.3.0-beta.1" } diff --git a/widgets/Cargo.toml b/widgets/Cargo.toml index 365d9d63b..05402909c 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.5" } -ribir_geom = {path = "../geom", version = "0.3.0-alpha.5" } +ribir_core = {path = "../core", version = "0.3.0-beta.1" } +ribir_geom = {path = "../geom", version = "0.3.0-beta.1" } webbrowser.workspace = true [dev-dependencies]