diff --git a/.release-please-manifest.json b/.release-please-manifest.json index af55ef0..0ee8c01 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.2.1" + ".": "0.3.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b53ca57..20adb93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,26 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.0](https://github.com/verygoodplugins/whatsapp-mcp/compare/v0.2.1...v0.3.0) (2026-06-03) + + +### Features + +* **bridge:** add macOS launchd installer ([#116](https://github.com/verygoodplugins/whatsapp-mcp/issues/116)) ([9b2cb8a](https://github.com/verygoodplugins/whatsapp-mcp/commit/9b2cb8ad3e9e1742fc6ac4714ceb5c4a72fb74e3)) +* persist inbound quoted_message_id and add reply support to /api/send ([#109](https://github.com/verygoodplugins/whatsapp-mcp/issues/109)) ([f72d352](https://github.com/verygoodplugins/whatsapp-mcp/commit/f72d35220153dcd8b1fc2dfc645447cf0796271c)), closes [#107](https://github.com/verygoodplugins/whatsapp-mcp/issues/107) + + +### Bug Fixes + +* **bridge:** handle ProtocolMessage_REVOKE (delete-for-everyone) events ([#99](https://github.com/verygoodplugins/whatsapp-mcp/issues/99)) ([7f4ec42](https://github.com/verygoodplugins/whatsapp-mcp/commit/7f4ec42c455d1716e901b6262a9ff7e3af437b6a)) +* **mcp:** deduplicate contact chat results ([da543ce](https://github.com/verygoodplugins/whatsapp-mcp/commit/da543ce14349e5f8f3eb3e8b6ee0df1ce284dac8)) +* **mcp:** serialize message context result ([ebb1e07](https://github.com/verygoodplugins/whatsapp-mcp/commit/ebb1e07d8c22ccd62ac1b4dad7b67da7d63c50da)) + + +### Documentation + +* **readme:** document app state recovery ([#117](https://github.com/verygoodplugins/whatsapp-mcp/issues/117)) ([040f9e1](https://github.com/verygoodplugins/whatsapp-mcp/commit/040f9e11054fd0d5c1fc9e0ad690111bacca1447)) + ## [0.2.1](https://github.com/verygoodplugins/whatsapp-mcp/compare/v0.2.0...v0.2.1) (2026-05-14) diff --git a/server.json b/server.json index 11837ca..7aad0d1 100644 --- a/server.json +++ b/server.json @@ -3,7 +3,7 @@ "name": "io.github.verygoodplugins/whatsapp-mcp", "title": "WhatsApp MCP", "description": "Read, search, and send WhatsApp messages via Claude", - "version": "0.2.1", + "version": "0.3.0", "websiteUrl": "https://verygoodplugins.com/?utm_source=mcp-registry", "repository": { "url": "https://github.com/verygoodplugins/whatsapp-mcp", @@ -13,7 +13,7 @@ { "registryType": "pypi", "identifier": "whatsapp-mcp-server", - "version": "0.2.1", + "version": "0.3.0", "transport": { "type": "stdio" } diff --git a/whatsapp-mcp-server/pyproject.toml b/whatsapp-mcp-server/pyproject.toml index 4acc402..54562f7 100644 --- a/whatsapp-mcp-server/pyproject.toml +++ b/whatsapp-mcp-server/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "whatsapp-mcp-server" -version = "0.2.1" +version = "0.3.0" description = "WhatsApp integration for Claude via Model Context Protocol (MCP)" requires-python = ">=3.11" license = "MIT"