Skip to content

Commit

Permalink
Publish puffin 0.14.0 (#107)
Browse files Browse the repository at this point in the history
### Checklist

* [x] I have read the [Contributor Guide](../CONTRIBUTING.md)
* [x] I have read and agree to the [Code of
Conduct](../CODE_OF_CONDUCT.md)
* [x] I have added a description of my changes and why I'd like them
included in the section below

### Description of Changes

This publishes a new version of `puffin`. Mostly because I want
<#98>.
  • Loading branch information
emilk authored Nov 7, 2022
1 parent 1e951a8 commit 5a28a19
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
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

0 comments on commit 5a28a19

Please sign in to comment.