Skip to content

Commit

Permalink
build(ribir): 🤖 corrected the alpha version release failure due to th…
Browse files Browse the repository at this point in the history
…e existing version
  • Loading branch information
M-Adoo committed Oct 25, 2024
1 parent 04ca2d7 commit 8962d69
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 25 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ homepage = "https://ribir.org"
keywords = ["gui", "ui", "declarative", "compose-ui"]
license = "MIT"
readme = "README.md"
version = "0.4.0-alpha.12"
version = "0.4.0-alpha.13"
rust-version = "1.81.0"

[workspace.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cli"
version = "0.4.0-alpha.12"
version = "0.4.0-alpha.13"
edition = "2021"
publish = false

Expand Down
8 changes: 4 additions & 4 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.12" }
ribir_geom = {path = "../geom", version = "0.4.0-alpha.12" }
ribir_macros = {path = "../macros", version = "0.4.0-alpha.12" }
ribir_painter = {path = "../painter", version = "0.4.0-alpha.12" }
ribir_algo = {path = "../algo", version = "0.4.0-alpha.13" }
ribir_geom = {path = "../geom", version = "0.4.0-alpha.13" }
ribir_macros = {path = "../macros", version = "0.4.0-alpha.13" }
ribir_painter = {path = "../painter", version = "0.4.0-alpha.13" }
rxrust.workspace = true
smallvec.workspace = true
winit.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion core/src/builtin_widgets/theme/icon_theme.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ impl Compose for NamedSvg {

impl IconTheme {
pub fn new(icon_size: IconSize) -> Self {
let svg = include_crate_svg!("../themes/ribir_slim/icons/miss_icon.svg");
let svg = include_crate_svg!("src/builtin_widgets/theme/miss_icon.svg");
let miss_icon = Resource::new(svg);
let mut icons = HashMap::<_, _, ahash::RandomState>::default();
icons.insert(MISS_ICON, miss_icon);
Expand Down
1 change: 1 addition & 0 deletions core/src/builtin_widgets/theme/miss_icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions dev-helper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ version.workspace = true

[dependencies]
futures.workspace = true
ribir_geom = {path = "../geom", version = "0.4.0-alpha.12" }
ribir_gpu = {path = "../gpu", version = "0.4.0-alpha.12" }
ribir_painter = {path = "../painter", features = ["png"], version = "0.4.0-alpha.12" }
ribir_geom = {path = "../geom", version = "0.4.0-alpha.13" }
ribir_gpu = {path = "../gpu", version = "0.4.0-alpha.13" }
ribir_painter = {path = "../painter", features = ["png"], version = "0.4.0-alpha.13" }
image.workspace = true
dssim-core.workspace = true

Expand Down
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.4.0-alpha.12" }
ribir_geom = {path = "../geom", version = "0.4.0-alpha.12" }
ribir_painter = {path = "../painter", features = ["tessellation"], version = "0.4.0-alpha.12" }
ribir_algo = {path = "../algo", version = "0.4.0-alpha.13" }
ribir_geom = {path = "../geom", version = "0.4.0-alpha.13" }
ribir_painter = {path = "../painter", features = ["tessellation"], version = "0.4.0-alpha.13" }
slab = "0.4.9"
wgpu = {workspace = true, optional = true}
zerocopy = {workspace=true, features = ["derive"]}
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.12" }
ribir_painter = {path = "../painter", version = "0.4.0-alpha.13" }
smallvec = { workspace = true, features= ["drain_filter"] }
syn = { workspace = true, features = ["fold", "full", "extra-traits"]}
phf = { workspace = true, features = ["macros"] }
Expand Down
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.4.0-alpha.12" }
ribir_geom = {path = "../geom", version = "0.4.0-alpha.12" }
ribir_algo = {path = "../algo", version = "0.4.0-alpha.13" }
ribir_geom = {path = "../geom", version = "0.4.0-alpha.13" }
serde = {version = "1.0", features = ["derive"]}
serde_json.workspace = true
tiny-skia-path = {workspace = true}
Expand Down
10 changes: 5 additions & 5 deletions ribir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ repository = "https://github.com/RibirX/Ribir/ribir"
version.workspace = true

[dependencies]
ribir_algo = { path = "../algo", version = "0.4.0-alpha.12" }
ribir_core = { path = "../core", version = "0.4.0-alpha.12" }
ribir_gpu = { path = "../gpu", version = "0.4.0-alpha.12" }
ribir_material = { path = "../themes/material", version = "0.4.0-alpha.12", optional = true }
ribir_widgets = { path = "../widgets", version = "0.4.0-alpha.12", optional = true }
ribir_algo = { path = "../algo", version = "0.4.0-alpha.13" }
ribir_core = { path = "../core", version = "0.4.0-alpha.13" }
ribir_gpu = { path = "../gpu", version = "0.4.0-alpha.13" }
ribir_material = { path = "../themes/material", version = "0.4.0-alpha.13", optional = true }
ribir_widgets = { path = "../widgets", version = "0.4.0-alpha.13", optional = true }
rxrust.workspace = true
wgpu = { workspace = true, optional = true }
winit.workspace = true
Expand Down
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.4.0-alpha.12" }
ribir_widgets = {path = "../../widgets", version = "0.4.0-alpha.12" }
ribir_core = {path = "../../core", version = "0.4.0-alpha.13" }
ribir_widgets = {path = "../../widgets", version = "0.4.0-alpha.13" }
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.4.0-alpha.12" }
ribir_geom = {path = "../geom", version = "0.4.0-alpha.12" }
ribir_core = {path = "../core", version = "0.4.0-alpha.13" }
ribir_geom = {path = "../geom", version = "0.4.0-alpha.13" }
webbrowser.workspace = true

[dev-dependencies]
Expand Down

0 comments on commit 8962d69

Please sign in to comment.