Skip to content

Releasing Changes

Charles Gagnon edited this page Nov 29, 2022 · 2 revisions

Creating a new release

  1. Confirm that all your changes have been reviewed and merged to main
  2. Checkout the release branch and pull your changes
git checkout release
git pull origin main
  1. Increment the version number in package.json
  2. Build the release branch
cd sqlops-dataprotocolclient
yarn
yarn run watch
  1. Confirm that git status shows only changed lib files and your modified package.json
  2. Commit and push changes to release branch
  3. On github, under releases, create a new release with the tag showing your new version number, and the target as release

Using this package

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)

Clone this wiki locally