Files
Mark Sinclair 626d013547 Switch from yarn to pnpm (#6779)
* switch from yarn to pnpm

* Remove full-nym-wasm (#6796)

* Remove nym-browser-extension (#6798)

* Remove nym-browser-extension

* remove unused from makefile

* Remove Node tester (#6800)

* Remove dom-utils (#6801)

* gh-actions: remove pnpm version

* nuke dist and pkg

* add missing dependency

* set node version to 24 and pnpm version to 11

* upgrade lock file from pnpm version 9 to 11

* pnpm add approved builds

* yarn -> pnpm

* upgrade jest version

* yarn -> pnpm

* Remove unused cfg; clippy!

* pnpm: when dev mode is on, unfreeze the lock file

* pnpm approve more scripts

* pnpm syntax error

* add `pnpm i`

* disable eslint temporarily while switching to biome in later PR

---------

Co-authored-by: Mark Sinclair <mmsinclair@users.noreply.github.com>
Co-authored-by: mfahampshire <maxhampshire@pm.me>
2026-05-22 20:29:51 +01:00
..
2026-05-22 20:29:51 +01:00
2026-04-17 09:23:55 +01:00

sdk-version-bump

simple tool to update version numbers of our sdk packages.

Usage:

note: this tool is expected to be run during CI, but if one wants to do it manually:

For releases:

  1. run ./sdk-version-bump remove-suffix that will remove the -rc.X suffixes from all relevant packages
  2. build everything and publish it to npm
  3. run ./sdk-version-bump bump-version that will update the versions of all relevant packages from X.Y.Z into X.Y.(Z+1)-rc.0. It will also update the @nymproject/... dependencies from ">=X.Y.Z-rc.0 || ^X" to ">=X.Y.(Z+1)-rc.0 || ^X"

For pre-releases:

  1. run ./sdk-version-bump bump-version --pre-release that will update the release candidate version of all relevant packages from X.Y.Z-rc.W to X.Y.Z-rc.(W+1)

To run it from the root, do: cargo run -p sdk-version-bump