diff --git a/README.md b/README.md index de73dad..dc1ef29 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@

- Version 0.2.13 + Version 0.2.14 A2A v0.3.0 MIT License Status: Beta @@ -449,7 +449,7 @@ The protocol version is defined in a single place: ```typescript // protocol/src/types.ts -export const REEF_VERSION = "0.2.13"; +export const REEF_VERSION = "0.2.14"; export const A2A_PROTOCOL_VERSION = "0.3.0"; ``` diff --git a/clawhub/claw.json b/clawhub/claw.json index 8959d5d..42d126a 100644 --- a/clawhub/claw.json +++ b/clawhub/claw.json @@ -1,6 +1,6 @@ { "name": "reef", - "version": "0.2.13", + "version": "0.2.14", "description": "Agent-to-agent protocol for encrypted messaging, skill discovery, reputation scoring, decentralized apps, and task delegation over XMTP. Find agents by skill, build trusted contact networks, and coordinate multi-agent workflows.", "author": "reef-protocol", "license": "MIT", diff --git a/client/package.json b/client/package.json index c14881d..b05483d 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "@reef-protocol/client", - "version": "0.2.13", + "version": "0.2.14", "description": "Reef Protocol client — daemon, CLI, and identity management", "type": "module", "main": "dist/daemon.js", diff --git a/directory/package.json b/directory/package.json index a65d68e..3e69347 100644 --- a/directory/package.json +++ b/directory/package.json @@ -1,7 +1,7 @@ { "name": "@reef-protocol/directory", "private": true, - "version": "0.2.13", + "version": "0.2.14", "description": "Reef Protocol directory server — agent discovery and network stats", "type": "module", "main": "dist/index.js", diff --git a/openclaw/package.json b/openclaw/package.json index aead892..d5eb70b 100644 --- a/openclaw/package.json +++ b/openclaw/package.json @@ -1,6 +1,6 @@ { "name": "@reef-protocol/reef-openclaw", - "version": "0.2.13", + "version": "0.2.14", "description": "Reef Protocol channel plugin for OpenClaw — receive and respond to A2A messages", "type": "module", "main": "dist/index.js", diff --git a/package-lock.json b/package-lock.json index fa7c748..c9ad905 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,10 +1,12 @@ { "name": "reef-protocol", + "version": "0.2.14", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "reef-protocol", + "version": "0.2.14", "workspaces": [ "protocol", "client", @@ -21,12 +23,11 @@ "typescript": "^5.7.0", "typescript-eslint": "^8.56.0", "vitest": "^3.0.0" - }, - "version": "0.2.13" + } }, "client": { "name": "@reef-protocol/client", - "version": "0.2.13", + "version": "0.2.14", "license": "MIT", "dependencies": { "@a2a-js/sdk": "^0.3.10", @@ -42,7 +43,7 @@ }, "directory": { "name": "@reef-protocol/directory", - "version": "0.2.13", + "version": "0.2.14", "dependencies": { "@a2a-js/sdk": "^0.3.0", "@reef-protocol/protocol": "*", @@ -15777,7 +15778,7 @@ }, "openclaw": { "name": "@reef-protocol/reef-openclaw", - "version": "0.2.13", + "version": "0.2.14", "license": "MIT", "dependencies": { "@reef-protocol/client": "^0.2.7", @@ -15789,13 +15790,12 @@ }, "protocol": { "name": "@reef-protocol/protocol", - "version": "0.2.13", + "version": "0.2.14", "license": "MIT", "dependencies": { "@a2a-js/sdk": "^0.3.10", "zod": "^3.24.0" } } - }, - "version": "0.2.13" + } } diff --git a/package.json b/package.json index 2227c27..9625304 100644 --- a/package.json +++ b/package.json @@ -32,5 +32,5 @@ "typescript-eslint": "^8.56.0", "vitest": "^3.0.0" }, - "version": "0.2.13" + "version": "0.2.14" } diff --git a/protocol/package.json b/protocol/package.json index c34b606..4a498ed 100644 --- a/protocol/package.json +++ b/protocol/package.json @@ -1,6 +1,6 @@ { "name": "@reef-protocol/protocol", - "version": "0.2.13", + "version": "0.2.14", "description": "Shared message types, envelope codec, and validation for Reef Protocol", "type": "module", "main": "dist/index.js", diff --git a/protocol/src/types.ts b/protocol/src/types.ts index 296b819..2434cf7 100644 --- a/protocol/src/types.ts +++ b/protocol/src/types.ts @@ -2,7 +2,7 @@ import type { AgentCard } from "@a2a-js/sdk"; -export const REEF_VERSION = "0.2.13"; +export const REEF_VERSION = "0.2.14"; export const A2A_PROTOCOL_VERSION = "0.3.0"; export const DEFAULT_DIRECTORY_URL = "https://reef-protocol-production.up.railway.app";