Skip to content

Commit

Permalink
Bump Vello version to 0.2.0. (#605)
Browse files Browse the repository at this point in the history
Also enable publishing for `vello_shaders`.
  • Loading branch information
xStrom committed Jun 8, 2024
1 parent 6d14d1d commit ae4959c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ members = [
# NOTE: When bumping this, remember to also bump the aforementioned other packages'
# version in the dependencies section at the bottom of this file.
# Additionally, bump the Vello dependency version in the 'simple' example.
version = "0.1.0"
version = "0.2.0"

edition = "2021"
# Keep in sync with RUST_MIN_VER in .github/workflows/ci.yml and with the relevant README.md files.
Expand All @@ -33,9 +33,9 @@ clippy.doc_markdown = "warn"
clippy.semicolon_if_nothing_returned = "warn"

[workspace.dependencies]
vello = { version = "0.1.0", path = "vello" }
vello_encoding = { version = "0.1.0", path = "vello_encoding" }
vello_shaders = { version = "0.1.0", path = "vello_shaders" }
vello = { version = "0.2.0", path = "vello" }
vello_encoding = { version = "0.2.0", path = "vello_encoding" }
vello_shaders = { version = "0.2.0", path = "vello_shaders" }
bytemuck = { version = "1.16.0", features = ["derive"] }
skrifa = "0.19.3"
peniko = "0.1.1"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ workspace = true
[dependencies]
# When using this example outside of the original Vello workspace,
# remove the path property of the following Vello dependency requirement.
vello = { version = "0.1.0", path = "../../vello" }
vello = { version = "0.2.0", path = "../../vello" }
anyhow = "1.0.86"
pollster = "0.3.0"
winit = "0.30.0"
2 changes: 0 additions & 2 deletions vello_shaders/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ rust-version.workspace = true
license.workspace = true
repository.workspace = true

publish = false # Remove this when the package is ready for publishing

[features]
default = ["wgsl", "full", "cpu"]
compile = ["dep:naga", "dep:thiserror"]
Expand Down

0 comments on commit ae4959c

Please sign in to comment.