diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0451499..0ee8c01 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.2.3" + ".": "0.3.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 54fd8c1..e51cb6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ 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.0](https://github.com/dinglebear-ai/rapprise/compare/v0.2.3...v0.3.0) (2026-08-04) + + +### Added + +* **release:** publish canonical MCP Registry metadata ([#30](https://github.com/dinglebear-ai/rapprise/issues/30)) ([0c16453](https://github.com/dinglebear-ai/rapprise/commit/0c16453ba40e399d24bcfe6e6f5acc7ff52be6a3)) + + +### Fixed + +* **release:** bind recovery provenance to tags ([#32](https://github.com/dinglebear-ai/rapprise/issues/32)) ([3c6f477](https://github.com/dinglebear-ai/rapprise/commit/3c6f477759c3e023cdc3bf81518fc800bbe229d9)) +* **release:** grant npm OIDC permission ([#27](https://github.com/dinglebear-ai/rapprise/issues/27)) ([5b12e5a](https://github.com/dinglebear-ai/rapprise/commit/5b12e5a350f4c5d5d8849104d082b57bab30a0b2)) +* **release:** upload recovery assets without metadata mutation ([#28](https://github.com/dinglebear-ai/rapprise/issues/28)) ([7367c37](https://github.com/dinglebear-ai/rapprise/commit/7367c37c3ec0f47de5f8d82ba2548b9d49164c96)) + ## [0.2.3](https://github.com/dinglebear-ai/rapprise/compare/v0.2.2...v0.2.3) (2026-08-03) diff --git a/Cargo.lock b/Cargo.lock index 661e7fa..1d12f15 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -34,7 +34,7 @@ checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3" [[package]] name = "apprise-mcp" -version = "0.2.3" +version = "0.3.0" dependencies = [ "anyhow", "apprise-mcp", @@ -3968,7 +3968,7 @@ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" [[package]] name = "xtask" -version = "0.2.3" +version = "0.3.0" dependencies = [ "anyhow", ] diff --git a/Cargo.toml b/Cargo.toml index bfee362..572a1fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,7 +52,7 @@ missing_safety_doc = "deny" [package] name = "apprise-mcp" -version = "0.2.3" +version = "0.3.0" 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 823ae31..10c9cc5 100644 --- a/packages/apprise-rmcp/package.json +++ b/packages/apprise-rmcp/package.json @@ -1,6 +1,6 @@ { "name": "@dinglebear/rapprise", - "version": "0.2.3", + "version": "0.3.0", "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.2.3", + "binaryVersion": "0.3.0", "author": { "name": "dinglebear.ai", "url": "https://dinglebear.ai" diff --git a/server.json b/server.json index 0407478..4a60058 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.2.3", + "version": "0.3.0", "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.2.3", + "version": "0.3.0", "runtimeHint": "npx", "packageArguments": [ { @@ -100,10 +100,10 @@ "dnsDomain": "dinglebear.ai", "distribution": { "nodePackage": "@dinglebear/rapprise", - "npm": "@dinglebear/rapprise@0.2.3" + "npm": "@dinglebear/rapprise@0.3.0" }, "buildInfo": { - "version": "0.2.3", + "version": "0.3.0", "repository": "https://github.com/dinglebear-ai/rapprise" } } diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 447f5aa..7a5de30 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.2.3" +version = "0.3.0" edition.workspace = true rust-version.workspace = true authors.workspace = true