Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rust: bump version to v0.4.0 #106

Merged
merged 1 commit into from
Oct 23, 2023
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
5 changes: 5 additions & 0 deletions rust/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
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.3.5"
version = "0.4.0"
authors = ["Johnnie Birch <[email protected]>"]
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.3.5"
version = "0.4.0"
edition = "2021"
authors = [
"Johnnie Birch <[email protected]>",
Expand All @@ -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]
Expand Down
Loading