Bump version to 0.13.1

This commit is contained in:
Connor Fitzgerald 2022-07-03 02:02:08 -04:00
parent 913f7a8346
commit 076df1a568
4 changed files with 13 additions and 36 deletions

43
Cargo.lock generated
View File

@ -600,7 +600,7 @@ checksum = "62007592ac46aa7c2b6416f7deb9a8a8f63a01e0f1d6e1787d5630170db2b63e"
dependencies = [
"futures-core",
"lock_api",
"parking_lot 0.11.2",
"parking_lot",
]
[[package]]
@ -704,7 +704,7 @@ dependencies = [
"log",
"objc",
"osmesa-sys",
"parking_lot 0.11.2",
"parking_lot",
"wayland-client",
"wayland-egl",
"winapi",
@ -1248,17 +1248,7 @@ checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
dependencies = [
"instant",
"lock_api",
"parking_lot_core 0.8.5",
]
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core 0.9.3",
"parking_lot_core",
]
[[package]]
@ -1275,19 +1265,6 @@ dependencies = [
"winapi",
]
[[package]]
name = "parking_lot_core"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
dependencies = [
"cfg-if 1.0.0",
"libc",
"redox_syscall",
"smallvec",
"windows-sys",
]
[[package]]
name = "percent-encoding"
version = "2.1.0"
@ -2056,7 +2033,7 @@ dependencies = [
[[package]]
name = "wgpu"
version = "0.13.0"
version = "0.13.1"
dependencies = [
"arrayvec",
"async-executor",
@ -2074,7 +2051,7 @@ dependencies = [
"nanorand",
"noise",
"obj",
"parking_lot 0.12.1",
"parking_lot",
"png",
"pollster",
"raw-window-handle",
@ -2091,7 +2068,7 @@ dependencies = [
[[package]]
name = "wgpu-core"
version = "0.13.0"
version = "0.13.1"
dependencies = [
"arrayvec",
"bit-vec",
@ -2102,7 +2079,7 @@ dependencies = [
"fxhash",
"log",
"naga",
"parking_lot 0.12.1",
"parking_lot",
"profiling",
"raw-window-handle",
"ron",
@ -2116,7 +2093,7 @@ dependencies = [
[[package]]
name = "wgpu-hal"
version = "0.13.0"
version = "0.13.1"
dependencies = [
"android_system_properties",
"arrayvec",
@ -2141,7 +2118,7 @@ dependencies = [
"metal",
"naga",
"objc",
"parking_lot 0.12.1",
"parking_lot",
"profiling",
"range-alloc",
"raw-window-handle",
@ -2266,7 +2243,7 @@ dependencies = [
"ndk-glue",
"ndk-sys",
"objc",
"parking_lot 0.11.2",
"parking_lot",
"percent-encoding",
"raw-window-handle",
"smithay-client-toolkit",

View File

@ -1,6 +1,6 @@
[package]
name = "wgpu-core"
version = "0.13.0"
version = "0.13.1"
authors = ["wgpu developers"]
edition = "2021"
description = "WebGPU core logic on wgpu-hal"

View File

@ -1,6 +1,6 @@
[package]
name = "wgpu-hal"
version = "0.13.0"
version = "0.13.1"
authors = ["wgpu developers"]
edition = "2021"
description = "WebGPU hardware abstraction layer"

View File

@ -1,6 +1,6 @@
[package]
name = "wgpu"
version = "0.13.0"
version = "0.13.1"
authors = ["wgpu developers"]
edition = "2021"
description = "Rusty WebGPU API wrapper"