diff --git a/rust/CHANGELOG.md b/rust/CHANGELOG.md index ba84ba50..9a60ac52 100644 --- a/rust/CHANGELOG.md +++ b/rust/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.5.0] - 2025-12-04 +### Added +- Add support for PT regions ([#140](https://github.com/intel/ittapi/pull/140)) +### Fixed +- Fixed an issue to remove an unneeded borrow. ([#193](https://github.com/intel/ittapi/pull/193)) +- Fixed several clippy, documentation and test issues +### Changed +- Regenerate bindings with recent VTune ([#114](https://github.com/intel/ittapi/pull/114)) + ## [0.4.0] - 2023-10-23 ### Fixed - Fixed a bug where JIT-generated code was not visible to VTune diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 264f136a..ade12e9e 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -129,7 +129,7 @@ dependencies = [ [[package]] name = "ittapi" -version = "0.4.0" +version = "0.5.0" dependencies = [ "anyhow", "ittapi-sys", @@ -139,7 +139,7 @@ dependencies = [ [[package]] name = "ittapi-sys" -version = "0.4.0" +version = "0.5.0" dependencies = [ "bindgen", "cc", diff --git a/rust/integration-tests/Cargo.lock b/rust/integration-tests/Cargo.lock index 497a2e9b..25abb493 100644 --- a/rust/integration-tests/Cargo.lock +++ b/rust/integration-tests/Cargo.lock @@ -19,7 +19,7 @@ dependencies = [ [[package]] name = "ittapi" -version = "0.4.0" +version = "0.5.0" dependencies = [ "anyhow", "ittapi-sys", @@ -35,7 +35,7 @@ dependencies = [ [[package]] name = "ittapi-sys" -version = "0.4.0" +version = "0.5.0" dependencies = [ "cc", ] diff --git a/rust/ittapi-sys/Cargo.toml b/rust/ittapi-sys/Cargo.toml index b8e60831..abc822a1 100644 --- a/rust/ittapi-sys/Cargo.toml +++ b/rust/ittapi-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ittapi-sys" -version = "0.4.0" +version = "0.5.0" authors = ["Johnnie Birch <45402135+jlb6740@users.noreply.github.com>"] edition = "2018" description = "Rust bindings for ittapi" diff --git a/rust/ittapi/Cargo.toml b/rust/ittapi/Cargo.toml index 331be8d6..93b30a16 100644 --- a/rust/ittapi/Cargo.toml +++ b/rust/ittapi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ittapi" -version = "0.4.0" +version = "0.5.0" edition = "2021" authors = [ "Johnnie Birch <45402135+jlb6740@users.noreply.github.com>", @@ -17,7 +17,7 @@ categories = ["development-tools"] [dependencies] anyhow = "1.0.56" -ittapi-sys = { path = "../ittapi-sys", version = "0.4.0" } +ittapi-sys = { path = "../ittapi-sys", version = "0.5.0" } log = "0.4.16" [dev-dependencies]