Bump Versions

This commit is contained in:
Connor Fitzgerald 2023-10-25 13:16:06 -04:00
parent 7acd1aaa5e
commit 95d216bb57
No known key found for this signature in database
GPG Key ID: 7D3FA445BAD3008D
2 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "naga"
version = "0.13.0"
version = "0.14.0"
authors = ["Naga Developers"]
edition = "2021"
description = "Shader translation infrastructure"
@ -60,7 +60,7 @@ num-traits = "0.2"
spirv = { version = "0.2", optional = true }
thiserror = "1.0.21"
serde = { version = "1.0.103", features = ["derive"], optional = true }
petgraph = { version ="0.6", optional = true }
petgraph = { version = "0.6", optional = true }
pp-rs = { version = "0.2.1", optional = true }
hexf-parse = { version = "0.2.1", optional = true }
unicode-xid = { version = "0.2.3", optional = true }
@ -70,7 +70,7 @@ bincode = "1"
criterion = { version = "0.5", features = [] }
diff = "0.1"
env_logger = "0.10"
hlsl-snapshots = { path = "./hlsl-snapshots"}
hlsl-snapshots = { path = "./hlsl-snapshots" }
# Require at least version 0.7.1 of ron, this version changed how floating points are
# serialized by forcing them to always have the decimal part, this makes it backwards
# incompatible with our tests because we do a syntatic diff and not a semantic one.

View File

@ -1,6 +1,6 @@
[package]
name = "naga-cli"
version = "0.13.0"
version = "0.14.0"
authors = ["Naga Developers"]
edition = "2021"
description = "Shader translation command line tool"
@ -33,5 +33,5 @@ features = [
"hlsl-out",
"dot-out",
"serialize",
"deserialize"
"deserialize",
]