release.txt 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. - Decide a new version number X.Y.Z (follow SemVer)
  2. - Update version in package.json
  3. - Update version in docs/VERSION
  4. - Commit the change with a commit like "Release X.Y.Z"
  5. - Add a new release on GitHub called "vX.Y.Z", and populate it with
  6. release notes of the following form (where A.B.C is the last release):
  7. Major Changes Since A.B.C
  8. =========================
  9. *Insert warnings here about incompatibilities*
  10. *Thanks to all the contributors who filed bugs, added features, and fixed bugs
  11. during this release :tada:*
  12. App-visible Changes
  13. -------------------
  14. - *feature* a feature which improves the app usage (#PRNUM)
  15. - *bugfix* a bug fix which fixes the app usage (#PRNUM)
  16. - *refactor* a refactor which changes the app usage (#PRNUM)
  17. Library-visible Changes
  18. -----------------------
  19. - *feature* a feature which improves the noVNC APIs (#PRNUM)
  20. - *bugfix* a bug fix which fixes the noVNC APIs (#PRNUM)
  21. - *refactor* a refactor which changes the noVNC APIs (#PRNUM)
  22. App-internals Changes
  23. ---------------------
  24. - *bugfix* a bug fix with affects the internals of noVNC only (#PRNUM)
  25. - *refactor* a refactor which affects the internals of noVNC only (#PRNUM)