From 5e046d673acfb602fd7ae1f9d96968b5cb1511af Mon Sep 17 00:00:00 2001 From: Philip Degarmo Date: Sun, 13 Oct 2024 20:07:25 -0700 Subject: [PATCH 1/2] Release 1.0.16 --- CHANGELOG.md | 8 ++++++++ profiling-procmacros/Cargo.toml | 2 +- profiling/Cargo.toml | 4 ++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 145d0e2..9e48dee 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" From 0ba524064aae5b4972e6be3424a2acb316f93ba3 Mon Sep 17 00:00:00 2001 From: Philip Degarmo Date: Sun, 13 Oct 2024 20:36:52 -0700 Subject: [PATCH 2/2] fix typo in changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e48dee..bb15222 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ * 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 +* 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