diff --git a/CHANGELOG.md b/CHANGELOG.md index 235f2464..dc727f6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.14.0] - 2022-11-07 + ### Fixed * [PR#102](https://github.com/EmbarkStudios/puffin/pull/102) Add a runtime setting on frameview to pack or not @@ -91,7 +93,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.13.2...HEAD +[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/0.14.0...HEAD +[0.14.0]: https://github.com/EmbarkStudios/puffin/compare/0.13.2...0.14.0 [0.13.2]: https://github.com/EmbarkStudios/puffin/compare/0.13.0...0.13.2 [0.13.0]: https://github.com/EmbarkStudios/puffin/compare/0.12.1...0.13.0 [0.12.1]: https://github.com/EmbarkStudios/puffin/compare/0.12.0...0.12.1 diff --git a/Cargo.lock b/Cargo.lock index 021fa5ae..8eb9000d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2426,7 +2426,7 @@ dependencies = [ [[package]] name = "puffin" -version = "0.13.3" +version = "0.14.0" dependencies = [ "anyhow", "bincode", diff --git a/puffin-imgui/Cargo.toml b/puffin-imgui/Cargo.toml index e7931185..b3d1a02e 100644 --- a/puffin-imgui/Cargo.toml +++ b/puffin-imgui/Cargo.toml @@ -15,7 +15,7 @@ include = ["**/*.rs", "Cargo.toml", "README.md"] [dependencies] imgui = { version = "0.8" } natord = "1.0.9" -puffin = { version = "0.13.3", path = "../puffin", features = ["packing"] } +puffin = { version = "0.14.0", path = "../puffin", features = ["packing"] } serde = { version = "1.0", features = ["derive"] } [dev-dependencies] diff --git a/puffin/Cargo.toml b/puffin/Cargo.toml index 694a5b8d..6e1aafaf 100644 --- a/puffin/Cargo.toml +++ b/puffin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "puffin" -version = "0.13.3" +version = "0.14.0" 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 ab51e7af..2a8ad03a 100644 --- a/puffin_egui/Cargo.toml +++ b/puffin_egui/Cargo.toml @@ -25,10 +25,10 @@ chrono = "0.4" egui = "0.19.0" natord = "1.0.9" once_cell = "1.7" -puffin = { version = "0.13.3", path = "../puffin", features = ["packing"] } +puffin = { version = "0.14.0", path = "../puffin", features = ["packing"] } serde = { version = "1.0", features = ["derive"], optional = true } vec1 = "1.8" -indexmap = {version="1.9.1", features=["serde"]} +indexmap = { version = "1.9.1", features = ["serde"] } [dev-dependencies] eframe = "0.19.0" diff --git a/puffin_http/Cargo.toml b/puffin_http/Cargo.toml index fbba2d3e..9bfca23e 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.13.3", path = "../puffin", features = [ +puffin = { version = "0.14.0", path = "../puffin", features = [ "packing", "serialization", ] } diff --git a/puffin_viewer/Cargo.toml b/puffin_viewer/Cargo.toml index a0074999..fc59d025 100644 --- a/puffin_viewer/Cargo.toml +++ b/puffin_viewer/Cargo.toml @@ -17,7 +17,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] puffin_egui = { version = "0.17.0", path = "../puffin_egui" } -puffin = { version = "0.13.3", path = "../puffin", features = [ +puffin = { version = "0.14.0", path = "../puffin", features = [ "packing", "serialization", ] }