Skip to content

Commit 1389e05

Browse files
committed
Bump crate versions (anyrender 0.9)
Signed-off-by: Nico Burns <nico@nicoburns.com>
1 parent f69412d commit 1389e05

12 files changed

Lines changed: 30 additions & 31 deletions

File tree

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ members = [
1717
resolver = "2"
1818

1919
[workspace.package]
20-
version = "0.6.0"
2120
license = "MIT OR Apache-2.0"
2221
homepage = "https://github.com/dioxuslabs/anyrender"
2322
repository = "https://github.com/dioxuslabs/anyrender"
@@ -27,16 +26,16 @@ rust-version = "1.92.0"
2726

2827
[workspace.dependencies]
2928
# AnyRender dependencies (in-repo)
30-
anyrender = { version = "0.8.0", path = "./crates/anyrender" }
31-
anyrender_serialize = { version = "0.1.0", path = "./crates/anyrender_serialize" }
32-
anyrender_skia = { version = "0.5.0", path = "./crates/anyrender_skia" }
33-
anyrender_vello = { version = "0.8.0", path = "./crates/anyrender_vello" }
34-
anyrender_vello_cpu = { version = "0.10.0", path = "./crates/anyrender_vello_cpu" }
35-
anyrender_vello_hybrid = { version = "0.3.0", path = "./crates/anyrender_vello_hybrid" }
36-
anyrender_svg = { version = "0.9.0", path = "./crates/anyrender_svg" }
37-
wgpu_context = { version = "0.4.0", path = "./crates/wgpu_context" }
38-
pixels_window_renderer = { version = "0.3.0", path = "./crates/pixels_window_renderer" }
39-
softbuffer_window_renderer = { version = "0.3.0", path = "./crates/softbuffer_window_renderer" }
29+
anyrender = { version = "0.9.0", path = "./crates/anyrender" }
30+
anyrender_serialize = { version = "0.2.0", path = "./crates/anyrender_serialize" }
31+
anyrender_skia = { version = "0.6.0", path = "./crates/anyrender_skia" }
32+
anyrender_vello = { version = "0.9.0", path = "./crates/anyrender_vello" }
33+
anyrender_vello_cpu = { version = "0.11.0", path = "./crates/anyrender_vello_cpu" }
34+
anyrender_vello_hybrid = { version = "0.4.0", path = "./crates/anyrender_vello_hybrid" }
35+
anyrender_svg = { version = "0.10.0", path = "./crates/anyrender_svg" }
36+
wgpu_context = { version = "0.5.0", path = "./crates/wgpu_context" }
37+
pixels_window_renderer = { version = "0.4.0", path = "./crates/pixels_window_renderer" }
38+
softbuffer_window_renderer = { version = "0.4.0", path = "./crates/softbuffer_window_renderer" }
4039

4140
# Serialization
4241
serde = "1.0.228"

crates/anyrender/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "anyrender"
33
description = "2D Canvas abstraction"
4-
version = "0.8.0"
4+
version = "0.9.0"
55
documentation = "https://docs.rs/anyrender"
66
homepage.workspace = true
77
repository.workspace = true

crates/anyrender_serialize/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "anyrender_serialize"
33
description = "Serialization of recorded scenes to a portable zip format"
4-
version = "0.1.1"
4+
version = "0.2.0"
55
documentation = "https://docs.rs/anyrender"
66
homepage.workspace = true
77
repository.workspace = true

crates/anyrender_skia/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "anyrender_skia"
33
description = "Skia backend for anyrender"
4-
version = "0.5.0"
4+
version = "0.6.0"
55
documentation = "https://docs.rs/anyrender_skia"
66
homepage.workspace = true
77
repository.workspace = true

crates/anyrender_svg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "anyrender_svg"
33
description = "Render SVGs with anyrender"
4-
version = "0.9.1"
4+
version = "0.10.0"
55
documentation = "https://docs.rs/anyrender-svg"
66
homepage.workspace = true
77
repository.workspace = true

crates/anyrender_vello/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "anyrender_vello"
33
description = "Vello backend for anyrender"
4-
version = "0.8.0"
4+
version = "0.9.0"
55
documentation = "https://docs.rs/anyrender_vello"
66
homepage.workspace = true
77
repository.workspace = true

crates/anyrender_vello_cpu/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "anyrender_vello_cpu"
33
description = "vello_cpu backend for anyrender"
4-
version = "0.10.0"
4+
version = "0.11.0"
55
documentation = "https://docs.rs/anyrender_vello_cpu"
66
homepage.workspace = true
77
repository.workspace = true

crates/anyrender_vello_hybrid/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "anyrender_vello_hybrid"
33
description = "vello_hybrid backend for anyrender"
4-
version = "0.3.0"
4+
version = "0.4.0"
55
documentation = "https://docs.rs/anyrender_vello_hybrid"
66
homepage.workspace = true
77
repository.workspace = true

crates/pixels_window_renderer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "pixels_window_renderer"
33
description = "AnyRender WindowRenderer backed by the pixels crate"
4-
version = "0.3.2"
4+
version = "0.4.0"
55
documentation = "https://docs.rs/pixels_window_renderer"
66
homepage.workspace = true
77
repository.workspace = true

0 commit comments

Comments
 (0)