diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0ee8c01..816df2d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.0" + ".": "0.3.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 35708c3..77dc57e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [0.3.1](https://github.com/dinglebear-ai/rapprise/compare/v0.3.0...v0.3.1) (2026-08-05) + + +### Fixed + +* **compose:** bind MCP to trusted interfaces ([#33](https://github.com/dinglebear-ai/rapprise/issues/33)) ([a33dc06](https://github.com/dinglebear-ai/rapprise/commit/a33dc060676004b6ee849c9f1fe3d7ff974a4e93)) +* **mcp:** use DNS-only Registry publisher ([#31](https://github.com/dinglebear-ai/rapprise/issues/31)) ([0c6a922](https://github.com/dinglebear-ai/rapprise/commit/0c6a9222c3b360106441a160735cb13ee506afc4)) + ## [Unreleased] ### Changed diff --git a/Cargo.lock b/Cargo.lock index 1d12f15..4cb0d8e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -34,7 +34,7 @@ checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3" [[package]] name = "apprise-mcp" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "apprise-mcp", @@ -3968,7 +3968,7 @@ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" [[package]] name = "xtask" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", ] diff --git a/Cargo.toml b/Cargo.toml index 572a1fb..529ad0a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,7 +52,7 @@ missing_safety_doc = "deny" [package] name = "apprise-mcp" -version = "0.3.0" +version = "0.3.1" edition.workspace = true rust-version.workspace = true authors.workspace = true diff --git a/packages/apprise-rmcp/package.json b/packages/apprise-rmcp/package.json index 10c9cc5..3714529 100644 --- a/packages/apprise-rmcp/package.json +++ b/packages/apprise-rmcp/package.json @@ -1,6 +1,6 @@ { "name": "@dinglebear/rapprise", - "version": "0.3.0", + "version": "0.3.1", "description": "Apprise notifications over MCP and CLI with authenticated stdio and HTTP transports.", "license": "MIT", "homepage": "https://rapprise.dinglebear.ai", @@ -55,7 +55,7 @@ "stdio" ], "mcpName": "ai.dinglebear/rapprise", - "binaryVersion": "0.3.0", + "binaryVersion": "0.3.1", "author": { "name": "dinglebear.ai", "url": "https://dinglebear.ai" diff --git a/server.json b/server.json index 4a60058..b215fe7 100644 --- a/server.json +++ b/server.json @@ -3,7 +3,7 @@ "name": "ai.dinglebear/rapprise", "title": "Apprise RMCP", "description": "Apprise notifications over MCP and CLI with authenticated stdio and HTTP transports.", - "version": "0.3.0", + "version": "0.3.1", "websiteUrl": "https://rapprise.dinglebear.ai", "repository": { "url": "https://github.com/dinglebear-ai/rapprise", @@ -25,7 +25,7 @@ "registryType": "npm", "registryBaseUrl": "https://registry.npmjs.org", "identifier": "@dinglebear/rapprise", - "version": "0.3.0", + "version": "0.3.1", "runtimeHint": "npx", "packageArguments": [ { @@ -100,10 +100,10 @@ "dnsDomain": "dinglebear.ai", "distribution": { "nodePackage": "@dinglebear/rapprise", - "npm": "@dinglebear/rapprise@0.3.0" + "npm": "@dinglebear/rapprise@0.3.1" }, "buildInfo": { - "version": "0.3.0", + "version": "0.3.1", "repository": "https://github.com/dinglebear-ai/rapprise" } } diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 7a5de30..c905896 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "xtask" # release-please requires a scalar member version; check-version-sync.sh prevents drift. -version = "0.3.0" +version = "0.3.1" edition.workspace = true rust-version.workspace = true authors.workspace = true