From 21fdd3c144b67d6a7ccc2b9f44f38645736117ed Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Mon, 23 Oct 2023 10:53:14 -0700 Subject: [PATCH] rust: bump version to v0.4.0 --- rust/CHANGELOG.md | 5 +++++ rust/ittapi-sys/Cargo.toml | 2 +- rust/ittapi/Cargo.toml | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) 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]