diff --git a/CHANGELOG.md b/CHANGELOG.md index 092e79e..eb51d82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,19 @@ # Change Log +## 0.18.2 +* Fix `resolve_queries` calls per frame causing invalid buffer copy operations, in [#83](https://github.com/Wumpf/wgpu-profiler/pull/83) + ## 0.18.1 -* fix issues with multiple calls to `GpuProfiler::resolve_queries` per frame, in [#79](https://github.com/Wumpf/wgpu-profiler/pull/79) +* Fix issues with multiple calls to `GpuProfiler::resolve_queries` per frame, in [#79](https://github.com/Wumpf/wgpu-profiler/pull/79) ## 0.18.0 -* update to wgpu 22.1.0, by @waywardmonkeys in [#75](https://github.com/Wumpf/wgpu-profiler/pull/75) +* Update to wgpu 22.1.0, by @waywardmonkeys in [#75](https://github.com/Wumpf/wgpu-profiler/pull/75) ## 0.17.0 -* update to wgpu 0.20 +* Update to wgpu 0.20 * `GpuTimerQueryResult` are now also produced when timing is disabled for that scope * `GpuTimerQueryResult::time` is an `Option` now -* update tracy client to 0.17.0 +* Update tracy client to 0.17.0 ## 0.16.2 diff --git a/Cargo.lock b/Cargo.lock index e8147ec..484f853 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1919,7 +1919,7 @@ dependencies = [ [[package]] name = "wgpu-profiler" -version = "0.18.1" +version = "0.18.2" dependencies = [ "futures-lite", "parking_lot", diff --git a/Cargo.toml b/Cargo.toml index 8de5d26..ce1aa3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu-profiler" -version = "0.18.1" +version = "0.18.2" authors = ["Andreas Reich "] edition = "2021" description = "Simple profiler scopes for wgpu using timer queries"