diff --git a/rust/CHANGELOG.md b/rust/CHANGELOG.md index 1f84e6a..ba84ba5 100644 --- a/rust/CHANGELOG.md +++ b/rust/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.4.0] - 2023-10-23 +### Fixed +- Fixed a bug where JIT-generated code was not visible to VTune + ([#105](https://github.com/intel/ittapi/pull/105)) + ## [0.3.5] - 2023-10-05 ### Changed - Removed some Fortran object files ([#100](https://github.com/intel/ittapi/pull/100)) diff --git a/rust/ittapi-sys/Cargo.toml b/rust/ittapi-sys/Cargo.toml index 6e0c694..1df3944 100644 --- a/rust/ittapi-sys/Cargo.toml +++ b/rust/ittapi-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ittapi-sys" -version = "0.3.5" +version = "0.4.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 89f4f0d..331be8d 100644 --- a/rust/ittapi/Cargo.toml +++ b/rust/ittapi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ittapi" -version = "0.3.5" +version = "0.4.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.3.5" } +ittapi-sys = { path = "../ittapi-sys", version = "0.4.0" } log = "0.4.16" [dev-dependencies]