Skip to content

Commit

Permalink
Release 1.0.15 (#68)
Browse files Browse the repository at this point in the history
* Also includes egui, puffin_egui, env_logger version bumps in the puffin demo to address CI failure
  • Loading branch information
aclysma authored Feb 17, 2024
1 parent f04ef4d commit 0dd3eb0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.0.15
* Update tracy-client to 0.17
* Misc. egui/puffin_egui version bumps in the puffin demo

## 1.0.14
* Due to MSRV being practically limited by selected profiling backend, the formally declared
MSRV has been removed. See readme.md for details.
Expand Down
8 changes: 4 additions & 4 deletions demo-puffin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ categories = ["development-tools::profiling"]
profiling = { path = "../profiling", features = ["profile-with-puffin"] }

puffin = "0.19.0"
puffin_egui = "0.25.0"
egui = "0.25.0"
puffin_egui = "0.26.0"
egui = "0.26.2"
# wgpu also works fine here
eframe = { version = "0.25.0", default-features = false, features = ["glow"] }
eframe = { version = "0.26.2", default-features = false, features = ["glow"] }

log = "0.4"
env_logger = "0.6"
env_logger = "0.11"

2 changes: 1 addition & 1 deletion profiling-procmacros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "profiling-procmacros"
version = "1.0.14"
version = "1.0.15"
authors = ["Philip Degarmo <[email protected]>"]
edition = "2018"
description = "This crate provides a very thin abstraction over other profiler crates."
Expand Down
4 changes: 2 additions & 2 deletions profiling/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "profiling"
version = "1.0.14"
version = "1.0.15"
authors = ["Philip Degarmo <[email protected]>"]
edition = "2018"
description = "This crate provides a very thin abstraction over other profiler crates."
Expand All @@ -20,7 +20,7 @@ optick = { version = "1.3", optional = true }
tracing = { version = "0.1", optional = true }
tracy-client = { version = "0.17", optional = true }
superluminal-perf = { version = "0.1", optional = true }
profiling-procmacros = { version = "1.0.14", path = "../profiling-procmacros", optional = true }
profiling-procmacros = { version = "1.0.15", path = "../profiling-procmacros", optional = true }

[dev-dependencies]
bincode = "1.3.1"
Expand Down

0 comments on commit 0dd3eb0

Please sign in to comment.