diff --git a/CHANGELOG.md b/CHANGELOG.md index 30c0cf88..b42887c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.18.1] - 2023-12-11 - [PR#175](https://github.com/EmbarkStudios/puffin/pull/175) Remove accidental `::{{closure}}` suffix from all `profile_function` scopes. @@ -129,7 +130,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * `GlobalProfiler` now store recent history and the slowest frames. -[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/0.18.0...HEAD +[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/0.18.1...HEAD +[0.18.1]: https://github.com/EmbarkStudios/puffin/compare/0.18.0...0.18.1 [0.18.0]: https://github.com/EmbarkStudios/puffin/compare/0.17.1...0.18.0 [0.17.1]: https://github.com/EmbarkStudios/puffin/compare/0.17.0...0.17.1 [0.17.0]: https://github.com/EmbarkStudios/puffin/compare/0.16.0...0.17.0 diff --git a/Cargo.lock b/Cargo.lock index ca609785..7415abfc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1723,7 +1723,7 @@ dependencies = [ [[package]] name = "puffin" -version = "0.18.0" +version = "0.18.1" dependencies = [ "anyhow", "bincode", diff --git a/puffin/Cargo.toml b/puffin/Cargo.toml index 37697edf..148a6650 100644 --- a/puffin/Cargo.toml +++ b/puffin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "puffin" -version = "0.18.0" +version = "0.18.1" authors = ["Embark "] license = "MIT OR Apache-2.0" description = "Simple instrumentation profiler for games" diff --git a/puffin_egui/Cargo.toml b/puffin_egui/Cargo.toml index b5b1dd1f..7ee408c9 100644 --- a/puffin_egui/Cargo.toml +++ b/puffin_egui/Cargo.toml @@ -25,7 +25,7 @@ egui = { version = "0.24.0", default-features = false } indexmap = { version = "1.9.1", features = ["serde"] } natord = "1.0.9" once_cell = "1.7" -puffin = { version = "0.18.0", path = "../puffin", features = ["packing"] } +puffin = { version = "0.18.1", path = "../puffin", features = ["packing"] } serde = { version = "1.0", features = ["derive"], optional = true } time = { version = "0.3.17", default-features = false, features = [ "formatting", diff --git a/puffin_http/Cargo.toml b/puffin_http/Cargo.toml index 39297613..1e8e2e17 100644 --- a/puffin_http/Cargo.toml +++ b/puffin_http/Cargo.toml @@ -16,7 +16,7 @@ include = ["**/*.rs", "Cargo.toml", "README.md"] anyhow = "1.0" crossbeam-channel = "0.5" log = "0.4" -puffin = { version = "0.18.0", path = "../puffin", features = [ +puffin = { version = "0.18.1", path = "../puffin", features = [ "packing", "lz4", "serialization", diff --git a/puffin_viewer/Cargo.toml b/puffin_viewer/Cargo.toml index adc3d71a..9264ab96 100644 --- a/puffin_viewer/Cargo.toml +++ b/puffin_viewer/Cargo.toml @@ -17,7 +17,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] puffin_egui = { version = "0.24.0", path = "../puffin_egui" } -puffin = { version = "0.18.0", path = "../puffin", features = [ +puffin = { version = "0.18.1", path = "../puffin", features = [ "packing", "serialization", "lz4",