Skip to content

Commit 09a7945

Browse files
committed
Release puffin-{{version}}
1 parent af1fdcc commit 09a7945

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
<!-- next-header -->
1010
## [Unreleased] - ReleaseDate
11+
## [0.17.1] - 2023-11-20
1112

1213
- [PR#165](https://github.com/EmbarkStudios/puffin/issues/165) Faster profiling, add line numbers, better paths, and better function names
1314

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

123124
<!-- next-url -->
124-
[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/0.17.0...HEAD
125+
[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/0.17.1...HEAD
126+
[0.17.1]: https://github.com/EmbarkStudios/puffin/compare/0.17.0...0.17.1
125127
[0.17.0]: https://github.com/EmbarkStudios/puffin/compare/0.16.0...0.17.0
126128
[0.16.0]: https://github.com/EmbarkStudios/puffin/compare/0.15.0...0.16.0
127129
[0.15.0]: https://github.com/EmbarkStudios/puffin/compare/0.14.3...0.15.0

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/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.17.0"
3+
version = "0.17.1"
44
authors = ["Embark <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
description = "Simple instrumentation profiler for games"

puffin_egui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ egui = { version = "0.23.0", default-features = false }
2525
indexmap = { version = "1.9.1", features = ["serde"] }
2626
natord = "1.0.9"
2727
once_cell = "1.7"
28-
puffin = { version = "0.17.0", path = "../puffin", features = ["packing"] }
28+
puffin = { version = "0.17.1", path = "../puffin", features = ["packing"] }
2929
serde = { version = "1.0", features = ["derive"], optional = true }
3030
time = { version = "0.3.17", default-features = false, features = [
3131
"formatting",

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.17.0", path = "../puffin", features = [
19+
puffin = { version = "0.17.1", path = "../puffin", features = [
2020
"packing",
2121
"lz4",
2222
"serialization",

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.23.0", path = "../puffin_egui" }
20-
puffin = { version = "0.17.0", path = "../puffin", features = [
20+
puffin = { version = "0.17.1", path = "../puffin", features = [
2121
"packing",
2222
"serialization",
2323
"lz4",

0 commit comments

Comments
 (0)