diff --git a/CHANGELOG.md b/CHANGELOG.md index d63d80d..32c2fd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 1.0.14 * Due to MSRV being practically limited by selected profiling backend, the formally declared MSRV has been removed. See readme.md for details. * Update puffin to 0.19 diff --git a/profiling-procmacros/Cargo.toml b/profiling-procmacros/Cargo.toml index e403de2..2fd1fff 100644 --- a/profiling-procmacros/Cargo.toml +++ b/profiling-procmacros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "profiling-procmacros" -version = "1.0.13" +version = "1.0.14" 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 69a957c..ee8bdf8 100644 --- a/profiling/Cargo.toml +++ b/profiling/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "profiling" -version = "1.0.13" +version = "1.0.14" authors = ["Philip Degarmo "] edition = "2018" description = "This crate provides a very thin abstraction over other profiler crates." @@ -20,7 +20,7 @@ optick = { version = "1.3", optional = true } tracing = { version = "0.1", optional = true } tracy-client = { version = "0.16.2", optional = true } superluminal-perf = { version = "0.1", optional = true } -profiling-procmacros = { version = "1.0.13", path = "../profiling-procmacros", optional = true } +profiling-procmacros = { version = "1.0.14", path = "../profiling-procmacros", optional = true } [dev-dependencies] bincode = "1.3.1"