5a0db2aea4
* always using port 443 for tls gateway connection * bumping up rc version * hack: additional hardcoded gateways it disables topology refresh * Add NPM packages to tool for bumping versions * Bump RC versions of SDK packages * Use manual gateway details * Add progress to `publish.sh` script * Add docs for WSS workaround --------- Co-authored-by: Mark Sinclair <mmsinclair@users.noreply.github.com>
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:
- run
./sdk-version-bump remove-suffixthat will remove the-rc.Xsuffixes from all relevant packages - build everything and publish it to npm
- run
./sdk-version-bump bump-versionthat will update the versions of all relevant packages fromX.Y.ZintoX.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:
- run
./sdk-version-bump bump-version --pre-releasethat will update the release candidate version of all relevant packages fromX.Y.Z-rc.WtoX.Y.Z-rc.(W+1)
To run it from the root, do: cargo run -p sdk-version-bump