Skip to content

Commit

Permalink
Release v3.0.0 (#17)
Browse files Browse the repository at this point in the history
With new fiber support from #16
  • Loading branch information
repi authored Jun 15, 2023
1 parent 8c66244 commit b1e629b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 0.3.0 - 2023-06-15

- Upgraded C API to 3.0
- Added fiber support ([#16](https://github.com/EmbarkStudios/superluminal-perf-rs/pull/16), thanks @manon-traverse)

## 0.2.0 - 2023-01-09

- Changed: Enforced static lifetimes on id strings as required by the Superluminal C library.
Expand Down
15 changes: 8 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
[package]
name = "superluminal-perf"
version = "0.2.0"
version = "0.3.0"
description = "Superluminal Performance API for adding user events to profiler captures"
authors = ["Embark <[email protected]>", "Johan Andersson <[email protected]>"]
authors = [
"Embark <[email protected]>",
"Johan Andersson <[email protected]>",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/EmbarkStudios/superluminal-perf-rs"
edition = "2018"
Expand All @@ -11,16 +14,14 @@ categories = ["development-tools::profiling", "api-bindings"]
readme = "README.md"

[workspace]
members = [
"sys"
]
members = ["sys"]

[lib]
doctest = false

[target.'cfg(windows)'.dependencies]
superluminal-perf-sys = { version = "0.1.1", path = "sys" }
superluminal-perf-sys = { version = "0.3.0", path = "sys" }

[features]
default = ["enable"]
enable = []
enable = []
7 changes: 5 additions & 2 deletions sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
[package]
name = "superluminal-perf-sys"
version = "0.1.2"
version = "0.3.0"
description = "Superluminal Performance C API bindings"
authors = ["Embark <[email protected]>", "Johan Andersson <[email protected]>"]
authors = [
"Embark <[email protected]>",
"Johan Andersson <[email protected]>",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/EmbarkStudios/superluminal-perf-rs"
edition = "2018"
Expand Down

0 comments on commit b1e629b

Please sign in to comment.