Skip to content

Commit

Permalink
Release puffin-{{version}}
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Nov 21, 2023
1 parent d8d55f3 commit 418251b
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- next-header -->
## [Unreleased] - ReleaseDate
## [0.18.0] - 2023-11-21
## [0.17.1] - 2023-11-20

- [PR#165](https://github.com/EmbarkStudios/puffin/issues/165) Faster profiling, add line numbers, better paths, and better function names
Expand Down Expand Up @@ -122,7 +123,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.17.1...HEAD
[Unreleased]: https://github.com/EmbarkStudios/puffin/compare/0.18.0...HEAD
[0.18.0]: https://github.com/EmbarkStudios/puffin/compare/0.17.1...0.18.0
[0.17.1]: https://github.com/EmbarkStudios/puffin/compare/0.17.0...0.17.1
[0.17.0]: https://github.com/EmbarkStudios/puffin/compare/0.16.0...0.17.0
[0.16.0]: https://github.com/EmbarkStudios/puffin/compare/0.15.0...0.16.0
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/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "puffin"
version = "0.17.1"
version = "0.18.0"
authors = ["Embark <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Simple instrumentation profiler for games"
Expand Down
2 changes: 1 addition & 1 deletion puffin_egui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ egui = { version = "0.23.0", default-features = false }
indexmap = { version = "1.9.1", features = ["serde"] }
natord = "1.0.9"
once_cell = "1.7"
puffin = { version = "0.17.1", path = "../puffin", features = ["packing"] }
puffin = { version = "0.18.0", path = "../puffin", features = ["packing"] }
serde = { version = "1.0", features = ["derive"], optional = true }
time = { version = "0.3.17", default-features = false, features = [
"formatting",
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.17.1", path = "../puffin", features = [
puffin = { version = "0.18.0", path = "../puffin", features = [
"packing",
"lz4",
"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.23.0", path = "../puffin_egui" }
puffin = { version = "0.17.1", path = "../puffin", features = [
puffin = { version = "0.18.0", path = "../puffin", features = [
"packing",
"serialization",
"lz4",
Expand Down

0 comments on commit 418251b

Please sign in to comment.