From 9f69aa1c102ba2c96500eeb53fc58f2cc8eac710 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Jun 2026 06:32:32 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 4 ++-- CHANGELOG.md | 8 ++++++++ Cargo.lock | 2 +- crates/agenthint/CHANGELOG.md | 7 +++++++ crates/agenthint/Cargo.toml | 2 +- package-lock.json | 4 ++-- package.json | 2 +- pyproject.toml | 2 +- 8 files changed, 23 insertions(+), 8 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8d8a457..95cbdc3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - ".": "0.4.1", - "crates/agenthint": "0.4.1" + ".": "0.4.2", + "crates/agenthint": "0.4.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b3569e0..5b80e52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.4.2](https://github.com/forjd/agenthint/compare/v0.4.1...v0.4.2) (2026-06-11) + + +### Bug Fixes + +* align detection and init behavior across implementations ([87fd407](https://github.com/forjd/agenthint/commit/87fd40787b04a28dbd6751ffd7c7f6caedacd2e1)) +* sync Cargo.lock with crate version 0.4.1 ([8004890](https://github.com/forjd/agenthint/commit/80048907b65c5226d8dbea17d1a7e262e7323764)) + ## [0.4.1](https://github.com/forjd/agenthint/compare/v0.4.0...v0.4.1) (2026-05-09) diff --git a/Cargo.lock b/Cargo.lock index f33066f..10f9f05 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agenthint" -version = "0.4.1" +version = "0.4.2" dependencies = [ "serde_json", ] diff --git a/crates/agenthint/CHANGELOG.md b/crates/agenthint/CHANGELOG.md index 8735800..f8894c5 100644 --- a/crates/agenthint/CHANGELOG.md +++ b/crates/agenthint/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.4.2](https://github.com/forjd/agenthint/compare/agenthint-v0.4.1...agenthint-v0.4.2) (2026-06-11) + + +### Bug Fixes + +* align detection and init behavior across implementations ([87fd407](https://github.com/forjd/agenthint/commit/87fd40787b04a28dbd6751ffd7c7f6caedacd2e1)) + ## [0.4.1](https://github.com/forjd/agenthint/compare/agenthint-v0.4.0...agenthint-v0.4.1) (2026-05-09) diff --git a/crates/agenthint/Cargo.toml b/crates/agenthint/Cargo.toml index daccb10..693a2bb 100644 --- a/crates/agenthint/Cargo.toml +++ b/crates/agenthint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agenthint" -version = "0.4.1" +version = "0.4.2" edition = "2024" description = "Detect AI agent runtimes and adapt CLI output." license = "MIT" diff --git a/package-lock.json b/package-lock.json index b9f609c..af0327d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "agenthint", - "version": "0.4.1", + "version": "0.4.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "agenthint", - "version": "0.4.1", + "version": "0.4.2", "license": "MIT", "bin": { "agenthint": "dist/cli.js" diff --git a/package.json b/package.json index afafd29..21688db 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agenthint", - "version": "0.4.1", + "version": "0.4.2", "description": "Detect AI agent runtimes and adapt CLI output.", "type": "module", "homepage": "https://github.com/forjd/agenthint#readme", diff --git a/pyproject.toml b/pyproject.toml index a32cd3d..b03e2ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "agenthint" -version = "0.4.1" +version = "0.4.2" description = "Detect AI agent runtimes and adapt CLI output." readme = "README.md" requires-python = ">=3.10"