diff --git a/CHANGELOG.md b/CHANGELOG.md index 5242a8c..39408bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.2.0] - 2026-06-21 + ### Added - **`cu-profiler comment`** — post the Markdown report as a *sticky* pull-request comment: one comment per PR, created once and updated in place on every run diff --git a/Cargo.lock b/Cargo.lock index 9129fd6..96f03a8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -178,7 +178,7 @@ dependencies = [ [[package]] name = "cu-profiler-cli" -version = "0.1.2" +version = "0.2.0" dependencies = [ "anyhow", "clap", @@ -192,7 +192,7 @@ dependencies = [ [[package]] name = "cu-profiler-core" -version = "0.1.2" +version = "0.2.0" dependencies = [ "serde", "serde_json", @@ -203,11 +203,11 @@ dependencies = [ [[package]] name = "cu-profiler-instrumentation" -version = "0.1.2" +version = "0.2.0" [[package]] name = "cu-profiler-report" -version = "0.1.2" +version = "0.2.0" dependencies = [ "cu-profiler-core", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 1c597dd..26c6225 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ exclude = [ ] [workspace.package] -version = "0.1.2" +version = "0.2.0" edition = "2024" rust-version = "1.85" license = "MIT OR Apache-2.0" @@ -26,9 +26,9 @@ keywords = ["solana", "compute-units", "profiler", "regression", "ci"] categories = ["development-tools::profiling", "development-tools::testing"] [workspace.dependencies] -cu-profiler-core = { path = "crates/cu-profiler-core", version = "0.1.2" } -cu-profiler-report = { path = "crates/cu-profiler-report", version = "0.1.2" } -cu-profiler-instrumentation = { path = "crates/cu-profiler-instrumentation", version = "0.1.2" } +cu-profiler-core = { path = "crates/cu-profiler-core", version = "0.2.0" } +cu-profiler-report = { path = "crates/cu-profiler-report", version = "0.2.0" } +cu-profiler-instrumentation = { path = "crates/cu-profiler-instrumentation", version = "0.2.0" } serde = { version = "1", features = ["derive"] } serde_json = "1"