chore(release): align all monorepo packages to 10.0.0-rc.2#358
Merged
branarakic merged 1 commit intomainfrom May 1, 2026
Merged
chore(release): align all monorepo packages to 10.0.0-rc.2#358branarakic merged 1 commit intomainfrom
branarakic merged 1 commit intomainfrom
Conversation
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
After PR #357 merged, the monorepo had drift: 4 packages at
10.0.0-rc.2(root,@origintrail-official/dkg, evm-module, mcp-server) and 17 still at10.0.0-rc.1(15 public + 2 private). This bumps the lagging 17 so the next manualpnpm -r publish --tag latestfrom thev10.0.0-rc.2tag publishes a coherent set of versions where@origintrail-official/dkgresolves matching versions of its workspace deps.Also updates the three mirror sites:
packages/random-sampling/src/index.ts—RANDOM_SAMPLING_PACKAGE_VERSIONconstantpackages/random-sampling/test/skeleton.test.ts— its assertionpackages/adapter-openclaw/openclaw.plugin.json— plugin manifest versionLeft unchanged on purpose:
packages/cli/test/chain-reset-wipe.test.ts:51— literal fixture value for chain-reset behaviour.github/workflows/npm-continuous-publish.yml:3— example in a comment@origintrail-official/dkg-mcp(0.1.0) — distinct internal versioning trackTest plan
pnpm install --frozen-lockfilecleanpnpm -r buildcleandkg-random-samplingtests pass (42/42) including the bumped version assertionv10.0.0-rc.2→ runrelease.yml→ manualpnpm -r publish --no-git-checks --tag latestMade with Cursor