Skip to content

Commit 5a28a19

Browse files
authored
Publish puffin 0.14.0 (#107)
### 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>.
1 parent 1e951a8 commit 5a28a19

File tree

7 files changed

+11
-8
lines changed

7 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
<!-- next-header -->
1010
## [Unreleased] - ReleaseDate
1111

12+
## [0.14.0] - 2022-11-07
13+
1214
### Fixed
1315
* [PR#102](https://github.com/EmbarkStudios/puffin/pull/102) Add a runtime setting on frameview to pack or not
1416

@@ -91,7 +93,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9193
* `GlobalProfiler` now store recent history and the slowest frames.
9294

9395
<!-- next-url -->
94-
[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/0.13.2...HEAD
96+
[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/0.14.0...HEAD
97+
[0.14.0]: https://github.com/EmbarkStudios/puffin/compare/0.13.2...0.14.0
9598
[0.13.2]: https://github.com/EmbarkStudios/puffin/compare/0.13.0...0.13.2
9699
[0.13.0]: https://github.com/EmbarkStudios/puffin/compare/0.12.1...0.13.0
97100
[0.12.1]: https://github.com/EmbarkStudios/puffin/compare/0.12.0...0.12.1

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

puffin-imgui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ include = ["**/*.rs", "Cargo.toml", "README.md"]
1515
[dependencies]
1616
imgui = { version = "0.8" }
1717
natord = "1.0.9"
18-
puffin = { version = "0.13.3", path = "../puffin", features = ["packing"] }
18+
puffin = { version = "0.14.0", path = "../puffin", features = ["packing"] }
1919
serde = { version = "1.0", features = ["derive"] }
2020

2121
[dev-dependencies]

puffin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "puffin"
3-
version = "0.13.3"
3+
version = "0.14.0"
44
authors = ["Embark <opensource@embark-studios.com>"]
55
license = "MIT OR Apache-2.0"
66
description = "Simple instrumentation profiler for games"

puffin_egui/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ chrono = "0.4"
2525
egui = "0.19.0"
2626
natord = "1.0.9"
2727
once_cell = "1.7"
28-
puffin = { version = "0.13.3", path = "../puffin", features = ["packing"] }
28+
puffin = { version = "0.14.0", path = "../puffin", features = ["packing"] }
2929
serde = { version = "1.0", features = ["derive"], optional = true }
3030
vec1 = "1.8"
31-
indexmap = {version="1.9.1", features=["serde"]}
31+
indexmap = { version = "1.9.1", features = ["serde"] }
3232

3333
[dev-dependencies]
3434
eframe = "0.19.0"

puffin_http/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ include = ["**/*.rs", "Cargo.toml", "README.md"]
1616
anyhow = "1.0"
1717
crossbeam-channel = "0.5"
1818
log = "0.4"
19-
puffin = { version = "0.13.3", path = "../puffin", features = [
19+
puffin = { version = "0.14.0", path = "../puffin", features = [
2020
"packing",
2121
"serialization",
2222
] }

puffin_viewer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ crate-type = ["cdylib", "rlib"]
1717

1818
[dependencies]
1919
puffin_egui = { version = "0.17.0", path = "../puffin_egui" }
20-
puffin = { version = "0.13.3", path = "../puffin", features = [
20+
puffin = { version = "0.14.0", path = "../puffin", features = [
2121
"packing",
2222
"serialization",
2323
] }

0 commit comments

Comments
 (0)