@concordium/id-app-sdk
v0.1.5
Published
[](https://github.com/Concordium/id-app-sdk/actions/workflows/deploy-sdk.yml) [ → published withalphatag. - Stable releases (e.g.
0.1.0) → published withlatesttag.
When releasing a new version of the SDK:
- Ensure code passes checks
yarn build:allUpdate the version in package.json
Update the CHANGELOG.md
Document notable changes since the last release.
- Push the Git tag
# prerelease (e.g releases/sdk/0.1.0-alpha.2)
git tag releases/*/*.*.*-*
# stable release (e.g releases/sdk/0.1.0)
git tag releases/*/*.*.*
# push the tag
git push origin main --tags- Pushing the tag will automatically:
- Publish the package to NPM with the correct tag (alpha or latest).
- Create a new release on GitHub.
- Update Release Description
- Go to the GitHub Releases page
- Add release notes (can be adapted from CHANGELOG.md).
