Skip to content

Commit

Permalink
Release puffin-0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Shadle committed Feb 7, 2022
1 parent 3283670 commit fd763e6
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- next-header -->
## [Unreleased] - ReleaseDate
## [0.13.0] - 2022-02-07
### Fixed
* Fix compilation for `wasm32-unknown-unknown`.

Expand Down Expand Up @@ -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.

<!-- next-url -->
[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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion puffin-imgui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion puffin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "puffin"
version = "0.12.1"
version = "0.13.0"
authors = ["Embark <opensource@embark-studios.com>"]
license = "MIT OR Apache-2.0"
description = "Simple instrumentation profiler for games"
Expand Down
2 changes: 1 addition & 1 deletion puffin_egui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion puffin_http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
] }
Expand Down
2 changes: 1 addition & 1 deletion puffin_viewer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
] }
Expand Down

0 comments on commit fd763e6

Please sign in to comment.