From ae4959cd95530107745265a11272a6ab76bf547a Mon Sep 17 00:00:00 2001 From: Kaur Kuut Date: Sat, 8 Jun 2024 15:22:18 +0200 Subject: [PATCH] Bump Vello version to 0.2.0. (#605) Also enable publishing for `vello_shaders`. --- Cargo.lock | 6 +++--- Cargo.toml | 8 ++++---- examples/simple/Cargo.toml | 2 +- vello_shaders/Cargo.toml | 2 -- 4 files changed, 8 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d290ab10..8d18edb9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2298,7 +2298,7 @@ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" [[package]] name = "vello" -version = "0.1.0" +version = "0.2.0" dependencies = [ "bytemuck", "futures-intrusive", @@ -2316,7 +2316,7 @@ dependencies = [ [[package]] name = "vello_encoding" -version = "0.1.0" +version = "0.2.0" dependencies = [ "bytemuck", "guillotiere", @@ -2327,7 +2327,7 @@ dependencies = [ [[package]] name = "vello_shaders" -version = "0.1.0" +version = "0.2.0" dependencies = [ "bytemuck", "naga", diff --git a/Cargo.toml b/Cargo.toml index 5c1fd9bd..74a9ed1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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. @@ -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" diff --git a/examples/simple/Cargo.toml b/examples/simple/Cargo.toml index 136706da..02e4e3d7 100644 --- a/examples/simple/Cargo.toml +++ b/examples/simple/Cargo.toml @@ -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" diff --git a/vello_shaders/Cargo.toml b/vello_shaders/Cargo.toml index 14eb242e..d3ade2ec 100644 --- a/vello_shaders/Cargo.toml +++ b/vello_shaders/Cargo.toml @@ -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"]