Skip to content

Latest commit

 

History

History
38 lines (21 loc) · 795 Bytes

RELEASING.rst

File metadata and controls

38 lines (21 loc) · 795 Bytes

Releasing

  1. Increment the version in provider/__init__.py
  2. Increment the version in package.json and package-lock.json
  3. Update the CHANGELOG.rst using:
$ git log --pretty=format:'  * %h - %s (%an, %ad)' vX.Y.Z..HEAD
  1. Add files to git:
$ git add CHANGELOG.rst package.json package-lock.json
$ git add provider/__init__.py
  1. Commit
$ git commit -m "Releasing version X.Y.Z"
  1. Tag
$ git tag -a vX.Y.Z -m "Releasing version X.Y.Z"
$ git push origin main --tags
  1. Wait until travis has run and the new tag is available at https://github.com/sergeyklay/provider-pact-example/releases/tag/vX.Y.Z
  2. Set the title to vX.Y.Z
  3. Save