Bump version to 0.30.0-rc.0 - #79
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR bumps the npm package version to 0.30.0-rc.0 to ensure the prerelease can be published successfully (npm publish uses package.json’s version, not the git tag).
Changes:
- Update
package.jsonversion from0.29.0to0.30.0-rc.0. - Update
package-lock.jsonversion entries to match0.30.0-rc.0.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| package.json | Bumps the published package version to 0.30.0-rc.0. |
| package-lock.json | Keeps lockfile version fields in sync with the new package version. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
MiloszFilimowski
approved these changes
Jul 31, 2026
MiloszFilimowski
requested changes
Jul 31, 2026
MiloszFilimowski
left a comment
Collaborator
There was a problem hiding this comment.
Please release from a dedicated branch. not master
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.
Bumps the package version to
0.30.0-rc.0ahead of a prerelease.Why
The
v0.29.0-rc.1release failed to publish:package.jsonwas still at0.29.0, which is already on npm, sonpm publishexited withE403 You cannot publish over the previously published versions: 0.29.0. The published version comes frompackage.json, not from the tag name — so the version has to be bumped in the repo first.0.30.0-rc.0(minor, prerelease) covers the VoIP work merged in #78 and sorts above0.29.0in semver, unlike0.29.0-rc.1.Changes
package.json/package-lock.json:0.29.0->0.30.0-rc.0After merge
gh release delete v0.29.0-rc.1 --cleanup-taggh release create v0.30.0-rc.0 --target master --generate-notes --prerelease— the publish workflow adds--tag rc, so npmlateststays at0.29.0.web-client-sdk, pin the submodule tov0.30.0-rc.0(itscheck:webrtc-publishedrequires the submodule tag to match this version and be on npm).