Skip to content

Commit fd763e6

Browse files
committed
Release puffin-0.13.0
1 parent 3283670 commit fd763e6

File tree

7 files changed

+9
-7
lines changed

7 files changed

+9
-7
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.13.0] - 2022-02-07
1112
### Fixed
1213
* Fix compilation for `wasm32-unknown-unknown`.
1314

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

8081
<!-- next-url -->
81-
[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/0.12.1...HEAD
82+
[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/0.13.0...HEAD
83+
[0.13.0]: https://github.com/EmbarkStudios/puffin/compare/0.12.1...0.13.0
8284
[0.12.1]: https://github.com/EmbarkStudios/puffin/compare/0.12.0...0.12.1
8385
[0.12.0]: https://github.com/EmbarkStudios/puffin/compare/0.11.0...0.12.0
8486
[0.11.0]: https://github.com/EmbarkStudios/puffin/compare/0.10.1...0.11.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-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.12.0", path = "../puffin", features = ["packing"] }
18+
puffin = { version = "0.13.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.12.1"
3+
version = "0.13.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ chrono = "0.4"
2525
egui = "0.16.0"
2626
natord = "1.0.9"
2727
once_cell = "1.7"
28-
puffin = { version = "0.12.0", path = "../puffin", features = ["packing"] }
28+
puffin = { version = "0.13.0", path = "../puffin", features = ["packing"] }
2929
serde = { version = "1.0", features = ["derive"], optional = true }
3030
vec1 = "1.8"
3131

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.12.0", path = "../puffin", features = [
19+
puffin = { version = "0.13.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.12.0", path = "../puffin_egui" }
20-
puffin = { version = "0.12.0", path = "../puffin", features = [
20+
puffin = { version = "0.13.0", path = "../puffin", features = [
2121
"packing",
2222
"serialization",
2323
] }

0 commit comments

Comments
 (0)