From 0729c4f3c24b16bf337aedcdcffe23c713315ef6 Mon Sep 17 00:00:00 2001 From: danielmeppiel Date: Tue, 10 Mar 2026 01:08:13 +0100 Subject: [PATCH] chore: changelog and version bump for v0.7.6 --- CHANGELOG.md | 17 +++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09eff62d2..7201050da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.6] - 2026-03-10 + +### Added + +- `apm pack` and `apm unpack` commands for portable bundle creation and extraction with target filtering, archive support, and verification (#218) +- Plugin MCP Server installation — extract, convert, and deploy MCP servers defined in plugin packages (#217) + +### Fixed + +- Plugin agents not deployed due to directory nesting in custom agent paths (#214) +- Skip already-configured self-defined MCP servers on re-install (#191) +- CLI consistency: remove emojis from help strings, fix `apm config` bare invocation, update descriptions (#212) + +### Changed + +- Extract `MCPIntegrator` from `cli.py` — move MCP lifecycle orchestration (~760 lines) into standalone module with hardened error handling (#215) + ## [0.7.5] - 2026-03-09 ### Added diff --git a/pyproject.toml b/pyproject.toml index 4cbeff7af..5aa13dc35 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "apm-cli" -version = "0.7.5" +version = "0.7.6" description = "MCP configuration tool" readme = "README.md" requires-python = ">=3.9"