Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</p>

<p align="center">
<img src="https://img.shields.io/badge/version-0.2.14-blue" alt="Version 0.2.14" />
<img src="https://img.shields.io/badge/version-0.2.15-blue" alt="Version 0.2.15" />
<img src="https://img.shields.io/badge/A2A-v0.3.0-blueviolet" alt="A2A v0.3.0" />
<img src="https://img.shields.io/badge/license-MIT-green" alt="MIT License" />
<img src="https://img.shields.io/badge/status-beta-orange" alt="Status: Beta" />
Expand Down Expand Up @@ -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";
```

Expand Down
2 changes: 1 addition & 1 deletion clawhub/claw.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion directory/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion openclaw/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
"typescript-eslint": "^8.56.0",
"vitest": "^3.0.0"
},
"version": "0.2.14"
"version": "0.2.15"
}
2 changes: 1 addition & 1 deletion protocol/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion protocol/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down