Release 0.6.1

Fixes version number mismatch (also adds more detailed instructions
for releasing).

Fixes #628
This commit is contained in:
Solly Ross 2016-07-04 15:29:00 -04:00
parent 5230ab6764
commit da82b3426c
3 changed files with 36 additions and 11 deletions

View File

@ -1 +1 @@
0.6 0.6.1

View File

@ -1,9 +1,34 @@
- Update and commit docs/VERSION - Decide a new version number X.Y.Z (follow SemVer)
- Create version tag and tarball from tag - Update version in package.json
WVER=0.3 - Update version in docs/VERSION
git tag v${WVER} - Commit the change with a commit like "Release X.Y.Z"
git push origin master - Add a new release on GitHub called "vX.Y.Z", and populate it with
git push origin v${WVER} release notes of the following form (where A.B.C is the last release):
git archive --format=tar --prefix=novnc-${WVER}/ v${WVER} > novnc-${WVER}.tar
gzip novnc-${WVER}.tar Major Changes Since A.B.C
- Upload tarball to repo =========================
*Insert warnings here about incompatibilities*
*Thanks to all the contributors who filed bugs, added features, and fixed bugs
during this release :tada:*
App-visible Changes
-------------------
- *feature* a feature which improves the app usage (#PRNUM)
- *bugfix* a bug fix which fixes the app usage (#PRNUM)
- *refactor* a refactor which changes the app usage (#PRNUM)
Library-visible Changes
-----------------------
- *feature* a feature which improves the noVNC APIs (#PRNUM)
- *bugfix* a bug fix which fixes the noVNC APIs (#PRNUM)
- *refactor* a refactor which changes the noVNC APIs (#PRNUM)
App-internals Changes
---------------------
- *bugfix* a bug fix with affects the internals of noVNC only (#PRNUM)
- *refactor* a refactor which affects the internals of noVNC only (#PRNUM)

View File

@ -1,6 +1,6 @@
{ {
"name": "noVNC", "name": "noVNC",
"version": "0.5.1", "version": "0.6.1",
"description": "An HTML5 VNC client", "description": "An HTML5 VNC client",
"main": "karma.conf.js", "main": "karma.conf.js",
"directories": { "directories": {