Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Adoo committed Jun 23, 2023
1 parent adde35b commit 01c8d18
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ homepage = "https://ribir.org"
keywords = ["gui", "ui", "declarative", "compose-ui"]
license = "MIT"
readme = "README.md"
version = "0.0.1-alpha.1"
version = "0.0.1-alpha.2"

[workspace.dependencies]
Inflector = "0.11.4"
Expand Down
10 changes: 5 additions & 5 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ log.workspace = true
lyon_geom.workspace = true
once_cell.workspace = true
pin-project-lite.workspace = true
ribir_algo = {path = "../algo", version = "0.0.1-alpha.1"}
ribir_geom = {path = "../geom", version = "0.0.1-alpha.1"}
ribir_macros = {path = "../macros", version = "0.0.1-alpha.1"}
ribir_painter = {path = "../painter", version = "0.0.1-alpha.1"}
ribir_text = {path = "../text", version = "0.0.1-alpha.1"}
ribir_algo = {path = "../algo", version = "0.0.1-alpha.2" }
ribir_geom = {path = "../geom", version = "0.0.1-alpha.2" }
ribir_macros = {path = "../macros", version = "0.0.1-alpha.2" }
ribir_painter = {path = "../painter", version = "0.0.1-alpha.2" }
ribir_text = {path = "../text", version = "0.0.1-alpha.2" }
rxrust.workspace = true
smallvec.workspace = true
winit.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions dev-helper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ version.workspace = true
[dependencies]
dssim-core.workspace = true
futures.workspace = true
ribir_geom = {path = "../geom", version = "0.0.1-alpha.1"}
ribir_gpu = {path = "../gpu", version = "0.0.1-alpha.1"}
ribir_painter = {path = "../painter", features = ["png"], version = "0.0.1-alpha.1"}
ribir_geom = {path = "../geom", version = "0.0.1-alpha.2" }
ribir_gpu = {path = "../gpu", version = "0.0.1-alpha.2" }
ribir_painter = {path = "../painter", features = ["png"], version = "0.0.1-alpha.2" }

[dev-dependencies]
colored.workspace = true
paste.workspace = true
ribir_core = {path = "../core", version = "0.0.1-alpha.1"}
ribir_core = {path = "../core", version = "0.0.1-alpha.2" }
6 changes: 3 additions & 3 deletions gpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ futures = {workspace = true, optional = true}
guillotiere.workspace = true
log.workspace = true
rayon.workspace = true
ribir_algo = {path = "../algo", version = "0.0.1-alpha.1"}
ribir_geom = {path = "../geom", version = "0.0.1-alpha.1"}
ribir_painter = {path = "../painter", features = ["tessellation"], version = "0.0.1-alpha.1"}
ribir_algo = {path = "../algo", version = "0.0.1-alpha.2" }
ribir_geom = {path = "../geom", version = "0.0.1-alpha.2" }
ribir_painter = {path = "../painter", features = ["tessellation"], version = "0.0.1-alpha.2" }
slab = "0.4.8"
wgpu = {workspace = true, optional = true}
zerocopy.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ bitflags.workspace = true
lazy_static.workspace = true
proc-macro2.workspace = true
quote.workspace = true
ribir_builtin = {path = "./builtin", version = "0.0.1-alpha.1" }
ribir_painter = {path = "../painter", version = "0.0.1-alpha.1" }
ribir_builtin = {path = "./builtin", version = "0.0.1-alpha.2" }
ribir_painter = {path = "../painter", version = "0.0.1-alpha.2" }
smallvec.workspace = true
syn = {workspace = true, features = ["visit-mut", "full", "extra-traits"]}

[build-dependencies]
ribir_builtin = {path = "./builtin", version = "0.0.1-alpha.1" }
ribir_builtin = {path = "./builtin", version = "0.0.1-alpha.2" }
4 changes: 2 additions & 2 deletions painter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0.1-alpha.1"}
ribir_geom = {path = "../geom", version = "0.0.1-alpha.1"}
ribir_algo = {path = "../algo", version = "0.0.1-alpha.2" }
ribir_geom = {path = "../geom", version = "0.0.1-alpha.2" }
serde = {version = "1.0", features = ["rc", "derive"]}
serde_json.workspace = true
tiny-skia-path = {workspace = true}
Expand Down
12 changes: 6 additions & 6 deletions ribir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ version.workspace = true

[dependencies]
once_cell.workspace = true
ribir_core = {path = "../core", version = "0.0.1-alpha.1" }
ribir_gpu = {path = "../gpu", version = "0.0.1-alpha.1" }
ribir_material = {path = "../themes/material", version = "0.0.1-alpha.1", optional = true}
ribir_widgets = {path = "../widgets", version = "0.0.1-alpha.1", optional = true}
ribir_core = {path = "../core", version = "0.0.1-alpha.2" }
ribir_gpu = {path = "../gpu", version = "0.0.1-alpha.2" }
ribir_material = {path = "../themes/material", version = "0.0.1-alpha.2", optional = true}
ribir_widgets = {path = "../widgets", version = "0.0.1-alpha.2", optional = true}
rxrust.workspace = true
wgpu = {workspace = true, optional = true}
winit.workspace = true
Expand All @@ -27,8 +27,8 @@ arboard = "3.2.0"
colored.workspace = true
env_logger.workspace = true
futures.workspace = true
ribir_dev_helper = {path = "../dev-helper", version = "0.0.1-alpha.1" }
ribir_material = {path = "../themes/material", version = "0.0.1-alpha.1" }
ribir_dev_helper = {path = "../dev-helper", version = "0.0.1-alpha.2" }
ribir_material = {path = "../themes/material", version = "0.0.1-alpha.2" }

[features]
default = ["wgpu", "widgets", "material"]
Expand Down
8 changes: 4 additions & 4 deletions text/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ fontdb.workspace = true
log.workspace = true
lyon_path.workspace = true
ordered-float.workspace = true
ribir_algo = {path = "../algo", version = "0.0.1-alpha.1"}
ribir_geom = {path = "../geom", version = "0.0.1-alpha.1"}
ribir_painter = {path = "../painter", version = "0.0.1-alpha.1"}
ribir_algo = {path = "../algo", version = "0.0.1-alpha.2" }
ribir_geom = {path = "../geom", version = "0.0.1-alpha.2" }
ribir_painter = {path = "../painter", version = "0.0.1-alpha.2" }
rustybuzz.workspace = true
unicode-bidi.workspace = true
unicode-script.workspace = true
unicode-segmentation.workspace = true

[features]
default = ["raster_png_font"]
raster_png_font = ["ribir_painter/png"]
raster_png_font = ["ribir_painter/png"]
4 changes: 2 additions & 2 deletions themes/material/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ repository = "https://github.com/RibirX/Ribir/themes/material"
version.workspace = true

[dependencies]
ribir_core = {path = "../../core", version = "0.0.1-alpha.1" }
ribir_widgets = {path = "../../widgets", version = "0.0.1-alpha.1" }
ribir_core = {path = "../../core", version = "0.0.1-alpha.2" }
ribir_widgets = {path = "../../widgets", version = "0.0.1-alpha.2" }
4 changes: 2 additions & 2 deletions widgets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ version.workspace = true
[dependencies]
lyon_algorithms.workspace = true
lyon_path.workspace = true
ribir_core = {path = "../core", version = "0.0.1-alpha.1"}
ribir_geom = {path = "../geom", version = "0.0.1-alpha.1"}
ribir_core = {path = "../core", version = "0.0.1-alpha.2" }
ribir_geom = {path = "../geom", version = "0.0.1-alpha.2" }
webbrowser.workspace = true

[dev-dependencies]
Expand Down

0 comments on commit 01c8d18

Please sign in to comment.