Files
nym/tools/internal/sdk-version-bump
Jędrzej Stuczyński 268588daac Feature/tls mixnet client (#4103)
* adjusting ts mixnet client constructor

* added forceTls argument to 'ClientOptsSimple'

* more sdk types removed

* fixed import

* removed go debug code

* printing wasm blob version on load

* version bump

* temporarily removed 'nym/nym/wasm/full-nym-wasm'

* changed workspaces definition

* correctly setting initial rc.0 suffix

* updated crate versions

* reverted 'useWorkspaces' lerna option

* Fix up dependency versions

* Add dev mode toggle to SDK publish scripts

* Show location of WASM package

* Change dev mode and CI build order

* Bump package versions in SDK docs

* Remove two versions of `mix-fetch` from SDK docs and only use `-full-fat` version

* Remove old arguments for mixFetch and rename to bust cache

* Remove `nym-wasm-sdk` from linting

* Release v1.2.3 of Typescript SDK

* Force WSS on mixnet client

* Bump TS SDK to 1.2.4-rc.0

* Clean up lock file

* Update node-tester version to 1.2.3 in nym-wallet

---------

Co-authored-by: Mark Sinclair <mmsinclair@users.noreply.github.com>
2023-11-06 19:05:11 +00:00
..
2023-11-06 19:05:11 +00: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