diff --git a/CHANGELOG.md b/CHANGELOG.md index 145d0e2..bb15222 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.0.16 +* Address warnings from upstream rustc changes +* Update puffin to 0.19.1 +* Update tracing-tracy to 0.11.3 and tracing-subscriber to 0.3 +* Implement finish_frame! for tracing +* Add fuction_scope!() as an alternative to the function proc macro +* Avoid local variable names that don't start with an underscore introduced into a function's namespace + ## 1.0.15 * Update tracy-client to 0.17 * Misc. egui/puffin_egui version bumps in the puffin demo diff --git a/profiling-procmacros/Cargo.toml b/profiling-procmacros/Cargo.toml index 070c494..359f664 100644 --- a/profiling-procmacros/Cargo.toml +++ b/profiling-procmacros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "profiling-procmacros" -version = "1.0.15" +version = "1.0.16" authors = ["Philip Degarmo "] edition = "2018" description = "This crate provides a very thin abstraction over other profiler crates." diff --git a/profiling/Cargo.toml b/profiling/Cargo.toml index 5ab908e..3a2c4e0 100644 --- a/profiling/Cargo.toml +++ b/profiling/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "profiling" -version = "1.0.15" +version = "1.0.16" authors = ["Philip Degarmo "] edition = "2018" description = "This crate provides a very thin abstraction over other profiler crates." @@ -19,7 +19,7 @@ optick = { version = "1.3", optional = true } tracing = { version = "0.1", optional = true } tracy-client = { version = "0.17", optional = true } superluminal-perf = { version = "0.1", optional = true } -profiling-procmacros = { version = "1.0.15", path = "../profiling-procmacros", optional = true } +profiling-procmacros = { version = "1.0.16", path = "../profiling-procmacros", optional = true } [dev-dependencies] bincode = "1.3.1"