Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish puffin 0.14.0 #107

Merged
merged 1 commit into from
Nov 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- next-header -->
## [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

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

<!-- next-url -->
[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
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.13.3", path = "../puffin", features = ["packing"] }
puffin = { version = "0.14.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.13.3"
version = "0.14.0"
authors = ["Embark <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Simple instrumentation profiler for games"
Expand Down
4 changes: 2 additions & 2 deletions puffin_egui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
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.13.3", path = "../puffin", features = [
puffin = { version = "0.14.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.17.0", path = "../puffin_egui" }
puffin = { version = "0.13.3", path = "../puffin", features = [
puffin = { version = "0.14.0", path = "../puffin", features = [
"packing",
"serialization",
] }
Expand Down