-
Notifications
You must be signed in to change notification settings - Fork 10
Releasing Changes
Charles Gagnon edited this page Nov 29, 2022
·
2 revisions
- Confirm that all your changes have been reviewed and merged to
main
- Checkout the release branch and pull your changes
git checkout release
git pull origin main
- Increment the version number in
package.json
- Build the release branch
cd sqlops-dataprotocolclient
yarn
yarn run watch
- Confirm that
git status
shows only changed lib files and your modifiedpackage.json
- Commit and push changes to release branch
- On github, under releases, create a new release with the tag showing your new version number, and the target as
release
This package is currently not published to a package repository such as NPM. To reference this package add the following entry into
"sqlops-dataprotocolclient": "github:Microsoft/sqlops-dataprotocolclient#<VERSION>",
where <VERSION>
is the version number from the release you want to use (e.g. github:Microsoft/sqlops-dataprotocolclient#1.3.1
)