Skip to content

Commit

Permalink
Upgrade tracy-client to 0.14.1, update CI, release v1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
aclysma authored Oct 8, 2022
1 parent 250b82d commit 958fa8c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
strategy:
matrix:
toolchain: [stable, beta]
os: [windows-2019, ubuntu-20.04, macos-10.15]
os: [windows-2022, ubuntu-22.04, macos-12]
exclude:
- os: macos-10.15
- os: macos-12
toolchain: beta
- os: windows-2019
- os: windows-2022
toolchain: beta
runs-on: ${{ matrix.os }}
needs: clean
Expand Down Expand Up @@ -88,15 +88,15 @@ jobs:

deny-check:
name: cargo-deny
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check ${{ matrix.checks }}

clean:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.0.7
* Update tracy-client to 0.14.1

## 1.0.6
* Update tracy-client to 0.13

Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ members = [

[package]
name = "profiling"
version = "1.0.6"
version = "1.0.7"
authors = ["Philip Degarmo <[email protected]>"]
edition = "2018"
description = "This crate provides a very thin abstraction over other profiler crates."
Expand All @@ -24,9 +24,9 @@ exclude = ["/examples", "/screenshots"]
puffin = { version = "0.12.1", optional = true }
optick = { version = "1.3", optional = true }
tracing = { version = "0.1", optional = true }
tracy-client = { version = "0.13", optional = true }
tracy-client = { version = "0.14.1", optional = true }
superluminal-perf = { version = "0.1", optional = true }
profiling-procmacros = { version = "1.0.6", path = "profiling-procmacros", optional = true }
profiling-procmacros = { version = "1.0.7", path = "profiling-procmacros", optional = true }

[dev-dependencies]
# Needed for the puffin example
Expand Down
3 changes: 2 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ allow = [
"MIT",
"Apache-2.0",
"BSD-3-Clause",
"Zlib"
"Zlib",
"Unicode-DFS-2016"
#"BSD-2-Clause"
#"Apache-2.0 WITH LLVM-exception",
]
Expand Down
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.6"
version = "1.0.7"
authors = ["Philip Degarmo <[email protected]>"]
edition = "2018"
description = "This crate provides a very thin abstraction over other profiler crates."
Expand Down

0 comments on commit 958fa8c

Please sign in to comment.