From 7e6cd7bd234c76a4f6b7d72c540c359bc63a9ae9 Mon Sep 17 00:00:00 2001 From: Sara Date: Tue, 18 Aug 2026 13:31:37 -0400 Subject: [PATCH] Release 0.4.0 Ships the unified CLI/MCP operation surface from #38 and the issue ignore/unignore verbs from #40. Minor rather than patch: the MCP arg shapes changed (per-entity fields, plural list entities) and `list snippet-locations` is now paginated, so saved MCP call examples break; see CHANGELOG.md for the migration notes. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01C5iUcFvos1Kf7kibnRKdBX --- CHANGELOG.md | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3eb5554..4425b92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.4.0 (2026-08-18) The CLI and MCP server now share one set of operation declarations (`src/ops/`), so the two surfaces expose identical operations with identical parameters. diff --git a/Cargo.lock b/Cargo.lock index 6be24c2..fbffb9e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -501,7 +501,7 @@ dependencies = [ [[package]] name = "fossapi" -version = "0.3.0" +version = "0.4.0" dependencies = [ "async-trait", "axum", diff --git a/Cargo.toml b/Cargo.toml index eb71b82..3c8ab27 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fossapi" -version = "0.3.0" +version = "0.4.0" edition = "2021" description = "Rust client library for the FOSSA REST API" license = "MIT"