From b1e629b85b3a9daa9830248c8a0542bee8a2a7c2 Mon Sep 17 00:00:00 2001 From: Johan Andersson Date: Thu, 15 Jun 2023 18:04:03 +0200 Subject: [PATCH] Release v3.0.0 (#17) With new fiber support from #16 --- CHANGELOG.md | 5 +++++ Cargo.toml | 15 ++++++++------- sys/Cargo.toml | 7 +++++-- 3 files changed, 18 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 046b371..bee55c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Cargo.toml b/Cargo.toml index df38d64..d0c29e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 ", "Johan Andersson "] +authors = [ + "Embark ", + "Johan Andersson ", +] license = "MIT OR Apache-2.0" repository = "https://github.com/EmbarkStudios/superluminal-perf-rs" edition = "2018" @@ -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 = [] \ No newline at end of file +enable = [] diff --git a/sys/Cargo.toml b/sys/Cargo.toml index 604ac0b..a341b11 100644 --- a/sys/Cargo.toml +++ b/sys/Cargo.toml @@ -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 ", "Johan Andersson "] +authors = [ + "Embark ", + "Johan Andersson ", +] license = "MIT OR Apache-2.0" repository = "https://github.com/EmbarkStudios/superluminal-perf-rs" edition = "2018"