diff --git a/CHANGELOG.md b/CHANGELOG.md index fcde81f..677f93a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [0.7.0] - 2026-08-04 + +## What's Changed +* Add inbound_receiving webhook support to webhook tools by @mklocek in https://github.com/mailtrap/mailtrap-mcp/pull/129 +* Forward MCP client identity in the API User-Agent by @mklocek in https://github.com/mailtrap/mailtrap-mcp/pull/130 +* chore(deps): bump ip-address from 10.2.0 to 10.4.0 in the npm_and_yarn group across 1 directory by @dependabot[bot] in https://github.com/mailtrap/mailtrap-mcp/pull/131 + + +**Full Changelog**: https://github.com/mailtrap/mailtrap-mcp/compare/v0.6.0...v0.7.0 + ## [0.6.0] - 2026-07-28 ## What's Changed diff --git a/manifest.json b/manifest.json index eabbfb4..fbb2c55 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": "0.2", "name": "mailtrap-mcpb", "display_name": "Mailtrap", - "version": "0.6.0", + "version": "0.7.0", "description": "Send emails and manage templates using Mailtrap", "long_description": "**[Mailtrap.io](https://mailtrap.io)** is a comprehensive email platform that helps developers and teams test, debug, and deliver emails safely. It provides both email testing (sandbox) and email delivery services. \n This MCP (Model Context Protocol) server provides AI assistants with the ability to: \n - **Send emails** via Mailtrap's delivery API \n - **Test emails** using Mailtrap's sandbox environment \n - **Manage email templates** (create, update, delete, list).", "author": { diff --git a/package-lock.json b/package-lock.json index 2bcd569..5d73acd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mcp-mailtrap", - "version": "0.6.0", + "version": "0.7.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "mcp-mailtrap", - "version": "0.6.0", + "version": "0.7.0", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.18.2", diff --git a/package.json b/package.json index e122693..d6b07d2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mcp-mailtrap", - "version": "0.6.0", + "version": "0.7.0", "mcpName": "io.mailtrap/mcp", "description": "Official MCP Server for Mailtrap", "license": "MIT", diff --git a/server.json b/server.json index 8a37fa6..1c6275d 100644 --- a/server.json +++ b/server.json @@ -8,7 +8,7 @@ "url": "https://github.com/mailtrap/mailtrap-mcp", "source": "github" }, - "version": "0.6.0", + "version": "0.7.0", "icons": [ { "src": "https://raw.githubusercontent.com/mailtrap/mailtrap-mcp/main/icon.png", @@ -20,7 +20,7 @@ "registryType": "npm", "registryBaseUrl": "https://registry.npmjs.org", "identifier": "mcp-mailtrap", - "version": "0.6.0", + "version": "0.7.0", "transport": { "type": "stdio" }, diff --git a/src/config/version.ts b/src/config/version.ts index bd9f26d..a4044cb 100644 --- a/src/config/version.ts +++ b/src/config/version.ts @@ -1 +1 @@ -export default "0.6.0"; +export default "0.7.0";