Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions rust/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions rust/integration-tests/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust/ittapi-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions rust/ittapi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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>",
Expand All @@ -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]
Expand Down
Loading