diff --git a/README.md b/README.md index 57f6b4f..5459974 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@
-
+
@@ -449,7 +449,7 @@ The protocol version is defined in a single place:
```typescript
// protocol/src/types.ts
-export const REEF_VERSION = "0.2.14";
+export const REEF_VERSION = "0.2.15";
export const A2A_PROTOCOL_VERSION = "0.3.0";
```
diff --git a/clawhub/claw.json b/clawhub/claw.json
index 688b536..883c9be 100644
--- a/clawhub/claw.json
+++ b/clawhub/claw.json
@@ -1,6 +1,6 @@
{
"name": "reef",
- "version": "0.2.14",
+ "version": "0.2.15",
"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 dbe8358..729f660 100644
--- a/client/package.json
+++ b/client/package.json
@@ -1,6 +1,6 @@
{
"name": "@reef-protocol/client",
- "version": "0.2.14",
+ "version": "0.2.15",
"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 3e69347..1d96aba 100644
--- a/directory/package.json
+++ b/directory/package.json
@@ -1,7 +1,7 @@
{
"name": "@reef-protocol/directory",
"private": true,
- "version": "0.2.14",
+ "version": "0.2.15",
"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 3031fe5..cb81d41 100644
--- a/openclaw/package.json
+++ b/openclaw/package.json
@@ -1,6 +1,6 @@
{
"name": "@reef-protocol/reef-openclaw",
- "version": "0.2.14",
+ "version": "0.2.15",
"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 c9ad905..45ca65f 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "reef-protocol",
- "version": "0.2.14",
+ "version": "0.2.15",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "reef-protocol",
- "version": "0.2.14",
+ "version": "0.2.15",
"workspaces": [
"protocol",
"client",
@@ -27,7 +27,7 @@
},
"client": {
"name": "@reef-protocol/client",
- "version": "0.2.14",
+ "version": "0.2.15",
"license": "MIT",
"dependencies": {
"@a2a-js/sdk": "^0.3.10",
@@ -43,7 +43,7 @@
},
"directory": {
"name": "@reef-protocol/directory",
- "version": "0.2.14",
+ "version": "0.2.15",
"dependencies": {
"@a2a-js/sdk": "^0.3.0",
"@reef-protocol/protocol": "*",
@@ -15778,7 +15778,7 @@
},
"openclaw": {
"name": "@reef-protocol/reef-openclaw",
- "version": "0.2.14",
+ "version": "0.2.15",
"license": "MIT",
"dependencies": {
"@reef-protocol/client": "^0.2.7",
@@ -15790,7 +15790,7 @@
},
"protocol": {
"name": "@reef-protocol/protocol",
- "version": "0.2.14",
+ "version": "0.2.15",
"license": "MIT",
"dependencies": {
"@a2a-js/sdk": "^0.3.10",
diff --git a/package.json b/package.json
index 9625304..769cbca 100644
--- a/package.json
+++ b/package.json
@@ -32,5 +32,5 @@
"typescript-eslint": "^8.56.0",
"vitest": "^3.0.0"
},
- "version": "0.2.14"
+ "version": "0.2.15"
}
diff --git a/protocol/package.json b/protocol/package.json
index 5678bd9..c17f1a4 100644
--- a/protocol/package.json
+++ b/protocol/package.json
@@ -1,6 +1,6 @@
{
"name": "@reef-protocol/protocol",
- "version": "0.2.14",
+ "version": "0.2.15",
"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 2434cf7..1166be1 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.14";
+export const REEF_VERSION = "0.2.15";
export const A2A_PROTOCOL_VERSION = "0.3.0";
export const DEFAULT_DIRECTORY_URL =
"https://reef-protocol-production.up.railway.app";