Skip to content

Commit

Permalink
Release puffin-0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
TimonPost committed May 24, 2023
1 parent 25a30f8 commit f47b5f2
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.16.0] - 2023-05-24

- [PR#136](https://github.com/EmbarkStudios/puffin/pull/136) Upgrade `ruzstd` to 0.4
- [PR#135](https://github.com/EmbarkStudios/puffin/pull/135) Allow picking `lz4_flex` and `zstd` compression by feature flag.
Expand Down Expand Up @@ -111,7 +112,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.15.0...HEAD
[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/0.16.0...HEAD
[0.16.0]: https://github.com/EmbarkStudios/puffin/compare/0.15.0...0.16.0
[0.15.0]: https://github.com/EmbarkStudios/puffin/compare/0.14.3...0.15.0
[0.14.3]: https://github.com/EmbarkStudios/puffin/compare/0.14.2...0.14.3
[0.14.2]: https://github.com/EmbarkStudios/puffin/compare/0.14.1...0.14.2
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 = "0.10"
natord = "1.0.9"
puffin = { version = "0.15.0", path = "../puffin", features = ["packing"] }
puffin = { version = "0.16.0", path = "../puffin", features = ["packing"] }
serde = { version = "1.0", features = ["derive"] }
mint = "0.5.6"

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.15.0"
version = "0.16.0"
authors = ["Embark <[email protected]>"]
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 @@ -28,7 +28,7 @@ indexmap = { version = "1.9.1", features = ["serde"] }
instant = "0.1"
natord = "1.0.9"
once_cell = "1.7"
puffin = { version = "0.15.0", path = "../puffin", features = ["packing"] }
puffin = { version = "0.16.0", path = "../puffin", features = ["packing"] }
serde = { version = "1.0", features = ["derive"], optional = true }
time = { version = "0.3.17", default-features = false, features = [
"formatting",
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.15.0", path = "../puffin", features = [
puffin = { version = "0.16.0", path = "../puffin", features = [
"packing",
"lz4",
"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.21.0", path = "../puffin_egui" }
puffin = { version = "0.15.0", path = "../puffin", features = [
puffin = { version = "0.16.0", path = "../puffin", features = [
"packing",
"serialization",
"lz4",
Expand Down

0 comments on commit f47b5f2

Please sign in to comment.