diff --git a/CHANGELOG.md b/CHANGELOG.md index b2150162..24d05f2c 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.13.0] - 2022-02-07 ### Fixed * Fix compilation for `wasm32-unknown-unknown`. @@ -78,7 +79,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.12.1...HEAD +[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/0.13.0...HEAD +[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 [0.12.0]: https://github.com/EmbarkStudios/puffin/compare/0.11.0...0.12.0 [0.11.0]: https://github.com/EmbarkStudios/puffin/compare/0.10.1...0.11.0 diff --git a/Cargo.lock b/Cargo.lock index ded2fe47..143a30b4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2178,7 +2178,7 @@ dependencies = [ [[package]] name = "puffin" -version = "0.12.1" +version = "0.13.0" dependencies = [ "anyhow", "bincode", diff --git a/puffin-imgui/Cargo.toml b/puffin-imgui/Cargo.toml index eddc4aea..b3a1d84f 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.12.0", path = "../puffin", features = ["packing"] } +puffin = { version = "0.13.0", path = "../puffin", features = ["packing"] } serde = { version = "1.0", features = ["derive"] } [dev-dependencies] diff --git a/puffin/Cargo.toml b/puffin/Cargo.toml index b77668d3..efeefa8c 100644 --- a/puffin/Cargo.toml +++ b/puffin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "puffin" -version = "0.12.1" +version = "0.13.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 1cd27a70..06adce93 100644 --- a/puffin_egui/Cargo.toml +++ b/puffin_egui/Cargo.toml @@ -25,7 +25,7 @@ chrono = "0.4" egui = "0.16.0" natord = "1.0.9" once_cell = "1.7" -puffin = { version = "0.12.0", path = "../puffin", features = ["packing"] } +puffin = { version = "0.13.0", path = "../puffin", features = ["packing"] } serde = { version = "1.0", features = ["derive"], optional = true } vec1 = "1.8" diff --git a/puffin_http/Cargo.toml b/puffin_http/Cargo.toml index dbf35787..226debf2 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.12.0", path = "../puffin", features = [ +puffin = { version = "0.13.0", path = "../puffin", features = [ "packing", "serialization", ] } diff --git a/puffin_viewer/Cargo.toml b/puffin_viewer/Cargo.toml index 96ce2ffd..6675e205 100644 --- a/puffin_viewer/Cargo.toml +++ b/puffin_viewer/Cargo.toml @@ -17,7 +17,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] puffin_egui = { version = "0.12.0", path = "../puffin_egui" } -puffin = { version = "0.12.0", path = "../puffin", features = [ +puffin = { version = "0.13.0", path = "../puffin", features = [ "packing", "serialization", ] }