From f0edae8ce9e55eeef489fc53b10dc95fb79561cc Mon Sep 17 00:00:00 2001 From: Connor Fitzgerald Date: Wed, 25 Jan 2023 16:27:09 -0500 Subject: [PATCH] Update to 0.11 (#2222) --- Cargo.toml | 2 +- cli/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 40e8106d61..a8dc9e0e09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "naga" -version = "0.10.0" +version = "0.11.0" authors = ["Naga Developers"] edition = "2021" description = "Shader translation infrastructure" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 06df3b681e..865130516d 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "naga-cli" -version = "0.10.0" +version = "0.11.0" authors = ["Naga Developers"] edition = "2021" description = "Shader translation command line tool" @@ -10,7 +10,7 @@ keywords = ["shader", "SPIR-V", "GLSL", "MSL"] license = "MIT OR Apache-2.0" [dependencies] -naga = { version = "0.10", path = "../", features = ["validate", "span", "wgsl-in", "wgsl-out", "glsl-in", "glsl-out", "spv-in", "spv-out", "msl-out", "hlsl-out", "dot-out", "serialize", "deserialize"] } +naga = { version = "0.11", path = "../", features = ["validate", "span", "wgsl-in", "wgsl-out", "glsl-in", "glsl-out", "spv-in", "spv-out", "msl-out", "hlsl-out", "dot-out", "serialize", "deserialize"] } bincode = "1" log = "0.4" codespan-reporting = "0.11"