From 0f9b68ca1c83b5713f1ff5e0bb75b40aa2c9aa6b Mon Sep 17 00:00:00 2001 From: Branimir Rakic Date: Fri, 1 May 2026 14:40:55 +0200 Subject: [PATCH] chore(release): align all monorepo packages to 10.0.0-rc.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit After PR #357 merged, four packages (root, cli/dkg, evm-module, mcp-server) were at 10.0.0-rc.2 while 17 others (15 public + 2 private) remained at 10.0.0-rc.1. Bump all lagging packages so the next manual `pnpm -r publish --tag latest` from the v10.0.0-rc.2 tag publishes a coherent set of versions and `@origintrail-official/dkg` resolves the matching versions of its workspace deps at install time. Also updates the three places where the version is mirrored outside package.json: * packages/random-sampling/src/index.ts — `RANDOM_SAMPLING_PACKAGE_VERSION` * packages/random-sampling/test/skeleton.test.ts — its assertion * packages/adapter-openclaw/openclaw.plugin.json — plugin manifest version Left intentionally unchanged: * packages/cli/test/chain-reset-wipe.test.ts — literal `10.0.0-rc.1` is a fixture value for chain-reset behaviour, not a real version * .github/workflows/npm-continuous-publish.yml — example version in a comment * `@origintrail-official/dkg-mcp` (0.1.0) — distinct internal versioning track; not part of the v10 release. Verified `pnpm -r build` clean. Made-with: Cursor --- demo/package.json | 2 +- packages/adapter-autoresearch/package.json | 2 +- packages/adapter-elizaos/package.json | 2 +- packages/adapter-hermes/package.json | 2 +- packages/adapter-openclaw/openclaw.plugin.json | 2 +- packages/adapter-openclaw/package.json | 2 +- packages/agent/package.json | 2 +- packages/attested-assets/package.json | 2 +- packages/chain/package.json | 2 +- packages/core/package.json | 2 +- packages/epcis/package.json | 2 +- packages/graph-viz/package.json | 2 +- packages/network-sim/package.json | 2 +- packages/node-ui/package.json | 2 +- packages/publisher/package.json | 2 +- packages/query/package.json | 2 +- packages/random-sampling/package.json | 2 +- packages/random-sampling/src/index.ts | 2 +- packages/random-sampling/test/skeleton.test.ts | 2 +- packages/storage/package.json | 2 +- 20 files changed, 20 insertions(+), 20 deletions(-) diff --git a/demo/package.json b/demo/package.json index ae514e94..8f2f3caf 100644 --- a/demo/package.json +++ b/demo/package.json @@ -1,6 +1,6 @@ { "name": "@origintrail-official/dkg-demo", - "version": "10.0.0-rc.1", + "version": "10.0.0-rc.2", "private": true, "type": "module", "dependencies": { diff --git a/packages/adapter-autoresearch/package.json b/packages/adapter-autoresearch/package.json index 46459907..e33dcd55 100644 --- a/packages/adapter-autoresearch/package.json +++ b/packages/adapter-autoresearch/package.json @@ -1,6 +1,6 @@ { "name": "@origintrail-official/dkg-adapter-autoresearch", - "version": "10.0.0-rc.1", + "version": "10.0.0-rc.2", "description": "Autoresearch adapter — collaborative autonomous ML research over the Decentralized Knowledge Graph", "type": "module", "main": "dist/index.js", diff --git a/packages/adapter-elizaos/package.json b/packages/adapter-elizaos/package.json index 57920c5b..65718a79 100644 --- a/packages/adapter-elizaos/package.json +++ b/packages/adapter-elizaos/package.json @@ -1,6 +1,6 @@ { "name": "@origintrail-official/dkg-adapter-elizaos", - "version": "10.0.0-rc.1", + "version": "10.0.0-rc.2", "description": "ElizaOS plugin adapter — turns any ElizaOS agent into a DKG V9 node", "type": "module", "main": "dist/index.js", diff --git a/packages/adapter-hermes/package.json b/packages/adapter-hermes/package.json index de5b1b68..0c65678d 100644 --- a/packages/adapter-hermes/package.json +++ b/packages/adapter-hermes/package.json @@ -1,6 +1,6 @@ { "name": "@origintrail-official/dkg-adapter-hermes", - "version": "10.0.0-rc.1", + "version": "10.0.0-rc.2", "description": "Hermes Agent adapter — connects Hermes AI agents to a DKG V10 node for verifiable shared memory", "type": "module", "main": "dist/index.js", diff --git a/packages/adapter-openclaw/openclaw.plugin.json b/packages/adapter-openclaw/openclaw.plugin.json index 8042dc80..75eb84f3 100644 --- a/packages/adapter-openclaw/openclaw.plugin.json +++ b/packages/adapter-openclaw/openclaw.plugin.json @@ -1,7 +1,7 @@ { "id": "adapter-openclaw", "name": "DKG Node UI Bridge", - "version": "10.0.0-rc.1", + "version": "10.0.0-rc.2", "description": "Connects a local OpenClaw agent to a DKG V10 node for node-backed chat, memory, and agent-network capabilities.", "kind": "memory", "channels": ["dkg-ui"], diff --git a/packages/adapter-openclaw/package.json b/packages/adapter-openclaw/package.json index d73a1286..bf6cefea 100644 --- a/packages/adapter-openclaw/package.json +++ b/packages/adapter-openclaw/package.json @@ -1,6 +1,6 @@ { "name": "@origintrail-official/dkg-adapter-openclaw", - "version": "10.0.0-rc.1", + "version": "10.0.0-rc.2", "description": "OpenClaw plugin adapter for connecting a DKG V10 node and chat bridge to an OpenClaw agent", "type": "module", "main": "dist/index.js", diff --git a/packages/agent/package.json b/packages/agent/package.json index 0ded2138..16432495 100644 --- a/packages/agent/package.json +++ b/packages/agent/package.json @@ -1,6 +1,6 @@ { "name": "@origintrail-official/dkg-agent", - "version": "10.0.0-rc.1", + "version": "10.0.0-rc.2", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/attested-assets/package.json b/packages/attested-assets/package.json index 859e9a8e..01c01cd0 100644 --- a/packages/attested-assets/package.json +++ b/packages/attested-assets/package.json @@ -1,6 +1,6 @@ { "name": "@origintrail-official/dkg-attested-assets", - "version": "10.0.0-rc.1", + "version": "10.0.0-rc.2", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/chain/package.json b/packages/chain/package.json index b2c00b88..4299cf62 100644 --- a/packages/chain/package.json +++ b/packages/chain/package.json @@ -1,6 +1,6 @@ { "name": "@origintrail-official/dkg-chain", - "version": "10.0.0-rc.1", + "version": "10.0.0-rc.2", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/core/package.json b/packages/core/package.json index b9f2297b..8699d4f5 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@origintrail-official/dkg-core", - "version": "10.0.0-rc.1", + "version": "10.0.0-rc.2", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/epcis/package.json b/packages/epcis/package.json index 71fb411d..41b0484a 100644 --- a/packages/epcis/package.json +++ b/packages/epcis/package.json @@ -1,6 +1,6 @@ { "name": "@origintrail-official/dkg-epcis", - "version": "10.0.0-rc.1", + "version": "10.0.0-rc.2", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/graph-viz/package.json b/packages/graph-viz/package.json index da1b1b8f..b04eb6c7 100644 --- a/packages/graph-viz/package.json +++ b/packages/graph-viz/package.json @@ -1,6 +1,6 @@ { "name": "@origintrail-official/dkg-graph-viz", - "version": "10.0.0-rc.1", + "version": "10.0.0-rc.2", "description": "RDF Knowledge Graph Visualizer — force-directed graph rendering with hexagonal nodes, declarative view configs, RDF-native data loading, and SPARQL-driven views", "type": "module", "main": "./dist/index.cjs", diff --git a/packages/network-sim/package.json b/packages/network-sim/package.json index a375375b..d7b2998e 100644 --- a/packages/network-sim/package.json +++ b/packages/network-sim/package.json @@ -1,6 +1,6 @@ { "name": "@origintrail-official/dkg-network-sim", - "version": "10.0.0-rc.1", + "version": "10.0.0-rc.2", "private": true, "type": "module", "scripts": { diff --git a/packages/node-ui/package.json b/packages/node-ui/package.json index 8abda562..8408e940 100644 --- a/packages/node-ui/package.json +++ b/packages/node-ui/package.json @@ -1,6 +1,6 @@ { "name": "@origintrail-official/dkg-node-ui", - "version": "10.0.0-rc.1", + "version": "10.0.0-rc.2", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/publisher/package.json b/packages/publisher/package.json index ea895635..66c2dbe7 100644 --- a/packages/publisher/package.json +++ b/packages/publisher/package.json @@ -1,6 +1,6 @@ { "name": "@origintrail-official/dkg-publisher", - "version": "10.0.0-rc.1", + "version": "10.0.0-rc.2", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/query/package.json b/packages/query/package.json index cdfa5dfc..f13eac45 100644 --- a/packages/query/package.json +++ b/packages/query/package.json @@ -1,6 +1,6 @@ { "name": "@origintrail-official/dkg-query", - "version": "10.0.0-rc.1", + "version": "10.0.0-rc.2", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/random-sampling/package.json b/packages/random-sampling/package.json index 1af431db..7550a3eb 100644 --- a/packages/random-sampling/package.json +++ b/packages/random-sampling/package.json @@ -1,6 +1,6 @@ { "name": "@origintrail-official/dkg-random-sampling", - "version": "10.0.0-rc.1", + "version": "10.0.0-rc.2", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/random-sampling/src/index.ts b/packages/random-sampling/src/index.ts index dac6e426..5dfee55a 100644 --- a/packages/random-sampling/src/index.ts +++ b/packages/random-sampling/src/index.ts @@ -18,7 +18,7 @@ * registered. */ -export const RANDOM_SAMPLING_PACKAGE_VERSION = '10.0.0-rc.1'; +export const RANDOM_SAMPLING_PACKAGE_VERSION = '10.0.0-rc.2'; export { extractV10KCFromStore, diff --git a/packages/random-sampling/test/skeleton.test.ts b/packages/random-sampling/test/skeleton.test.ts index 3fb9af7a..c4d49a5e 100644 --- a/packages/random-sampling/test/skeleton.test.ts +++ b/packages/random-sampling/test/skeleton.test.ts @@ -3,6 +3,6 @@ import { RANDOM_SAMPLING_PACKAGE_VERSION } from '../src/index.js'; describe('@origintrail-official/dkg-random-sampling — skeleton', () => { it('exposes a version constant matching the rest of the workspace', () => { - expect(RANDOM_SAMPLING_PACKAGE_VERSION).toBe('10.0.0-rc.1'); + expect(RANDOM_SAMPLING_PACKAGE_VERSION).toBe('10.0.0-rc.2'); }); }); diff --git a/packages/storage/package.json b/packages/storage/package.json index bb5661fa..fadf2960 100644 --- a/packages/storage/package.json +++ b/packages/storage/package.json @@ -1,6 +1,6 @@ { "name": "@origintrail-official/dkg-storage", - "version": "10.0.0-rc.1", + "version": "10.0.0-rc.2", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts",