Skip to content

Commit

Permalink
Release puffin-0.19
Browse files Browse the repository at this point in the history
  • Loading branch information
TimonPost committed Jan 17, 2024
1 parent ae97072 commit 63ef086
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 18 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- next-header -->
## [Unreleased] - ReleaseDate
## [0.19.0] - 2024-01-17

- [PR#169](https://github.com/EmbarkStudios/puffin/pull/169) Stream scope information only once. Breaking change! See PR for migration guide.
- [PR#169](https://github.com/EmbarkStudios/puffin/pull/169) Stream scope information only once, drastically reduce bandwidth and increased performance. Allow better usage of static strings in profile scopes. Breaking change! See PR for migration guide.
- [PR#179](https://github.com/EmbarkStudios/puffin/pull/179) Update egui to v0.25 and a updates many other dependencies in process.
- [PR#181](https://github.com/EmbarkStudios/puffin/pull/181) Measure profile scope start time after serialization functions.

## [0.18.1] - 2023-12-11

Expand Down Expand Up @@ -133,7 +136,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.18.1...HEAD
[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/0.19.0...HEAD
[0.19.0]: https://github.com/EmbarkStudios/puffin/compare/0.18.1...0.19.0
[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
Expand Down
8 changes: 4 additions & 4 deletions 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/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "puffin"
version = "0.18.1"
version = "0.19.0"
authors = ["Embark <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Simple instrumentation profiler for games"
Expand Down
4 changes: 3 additions & 1 deletion puffin_egui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ All notable changes to the egui crate will be documented in this file.

<!-- next-header -->
## [Unreleased] - ReleaseDate
## [0.25.0] - 2024-01-17
## [0.24.0] - 2023-11-24

- [PR#166](https://github.com/EmbarkStudios/puffin/pull/166) Add `show_viewport_if_enabled` method, which will show the profiler UI in a separate viewport, if possible.
Expand Down Expand Up @@ -161,7 +162,8 @@ All notable changes to the egui crate will be documented in this file.
- The view supports viewing merged sibling scopes.

<!-- next-url -->
[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/puffin_egui-0.24.0...HEAD
[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/puffin_egui-0.25.0...HEAD
[0.25.0]: https://github.com/EmbarkStudios/puffin/compare/puffin_egui-0.24.0...puffin_egui-0.25.0
[0.24.0]: https://github.com/EmbarkStudios/puffin/compare/puffin_egui-0.23.0...puffin_egui-0.24.0
[0.23.0]: https://github.com/EmbarkStudios/puffin/compare/puffin_egui-0.22.0...puffin_egui-0.23.0
[0.22.0]: https://github.com/EmbarkStudios/puffin/compare/puffin_egui-0.21.0...puffin_egui-0.22.0
Expand Down
4 changes: 2 additions & 2 deletions puffin_egui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "puffin_egui"
version = "0.24.0"
version = "0.25.0"
authors = ["Emil Ernerfeldt <[email protected]>"]
description = "Show puffin profiler flamegraph in-game using egui"
edition = "2018"
Expand All @@ -26,7 +26,7 @@ indexmap = { version = "2.1.0", features = ["serde"] }
natord = "1.0.9"
once_cell = "1.7"
parking_lot = "0.12"
puffin = { version = "0.18.1", path = "../puffin", features = ["packing"] }
puffin = { version = "0.19.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
4 changes: 3 additions & 1 deletion puffin_http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ All notable changes to `puffin_http` will be documented in this file.

<!-- next-header -->
## [Unreleased] - ReleaseDate
## [0.16.0] - 2024-01-17
## [0.15.0] - 2023-11-21
## [0.14.0] - 2023-09-28
## [0.13.0] - 2023-05-24
Expand Down Expand Up @@ -71,7 +72,8 @@ All notable changes to `puffin_http` will be documented in this file.
- Initial release

<!-- next-url -->
[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/puffin_http-0.15.0...HEAD
[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/puffin_http-0.16.0...HEAD
[0.16.0]: https://github.com/EmbarkStudios/puffin/compare/puffin_http-0.15.0...puffin_http-0.16.0
[0.15.0]: https://github.com/EmbarkStudios/puffin/compare/puffin_http-0.14.0...puffin_http-0.15.0
[0.14.0]: https://github.com/EmbarkStudios/puffin/compare/puffin_http-0.13.0...puffin_http-0.14.0
[0.13.0]: https://github.com/EmbarkStudios/puffin/compare/puffin_http-0.12.0...puffin_http-0.13.0
Expand Down
4 changes: 2 additions & 2 deletions puffin_http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "puffin_http"
version = "0.15.0"
version = "0.16.0"
authors = ["Embark <[email protected]>"]
description = "TCP server/client for puffin profiler data"
license = "MIT OR Apache-2.0"
Expand All @@ -17,7 +17,7 @@ anyhow = "1.0"
crossbeam-channel = "0.5"
log = "0.4"
parking_lot = "0.12"
puffin = { version = "0.18.1", path = "../puffin", features = [
puffin = { version = "0.19.0", path = "../puffin", features = [
"packing",
"lz4",
"serialization",
Expand Down
4 changes: 3 additions & 1 deletion puffin_viewer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ All notable changes to `puffin_viewer` will be documented in this file.

<!-- next-header -->
## [Unreleased] - ReleaseDate
## [0.19.0] - 2024-01-17
## [0.18.0] - 2023-11-24
- [PR#161](https://github.com/EmbarkStudios/puffin/pull/166) Update to egui and eframe `0.24`

Expand Down Expand Up @@ -107,7 +108,8 @@ All notable changes to `puffin_viewer` will be documented in this file.
First release: connect to a `puffin_server` over HTTP to live view a profiler stream

<!-- next-url -->
[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/puffin_viewer-0.18.0...HEAD
[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/puffin_viewer-0.19.0...HEAD
[0.19.0]: https://github.com/EmbarkStudios/puffin/compare/puffin_viewer-0.18.0...puffin_viewer-0.19.0
[0.18.0]: https://github.com/EmbarkStudios/puffin/compare/puffin_viewer-0.17.0...puffin_viewer-0.18.0
[0.17.0]: https://github.com/EmbarkStudios/puffin/compare/puffin_viewer-0.16.0...puffin_viewer-0.17.0
[0.16.0]: https://github.com/EmbarkStudios/puffin/compare/puffin_viewer-0.15.0...puffin_viewer-0.16.0
Expand Down
8 changes: 4 additions & 4 deletions puffin_viewer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "puffin_viewer"
version = "0.18.0"
version = "0.19.0"
authors = ["Embark <[email protected]>"]
description = "Viewer GUI for puffin profiler data"
license = "MIT OR Apache-2.0"
Expand All @@ -16,14 +16,14 @@ include = ["**/*.rs", "Cargo.toml", "README.md", "icon.png"]
crate-type = ["cdylib", "rlib"]

[dependencies]
puffin_egui = { version = "0.24.0", path = "../puffin_egui" }
puffin = { version = "0.18.1", path = "../puffin", features = [
puffin_egui = { version = "0.25.0", path = "../puffin_egui" }
puffin = { version = "0.19.0", path = "../puffin", features = [
"packing",
"serialization",
"lz4",
"zstd", # Support zstd in order to load old puffin files (before 0.16.0)
] }
puffin_http = { version = "0.15.0", path = "../puffin_http" }
puffin_http = { version = "0.16.0", path = "../puffin_http" }

argh = "0.1"
eframe = { version = "0.25.0", default-features = false, features = [
Expand Down

0 comments on commit 63ef086

Please sign in to comment.