summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolly Ross <sross@redhat.com>2016-07-04 15:29:00 -0400
committerSolly Ross <sross@redhat.com>2016-07-04 15:29:00 -0400
commitda82b3426c27bf1a79f671c5825d68ab8c0c5d9f (patch)
tree50bf5f488072d3539b46bef95b0edb253cd5bae0
parent5230ab676472cc48c06237ea861938c905782651 (diff)
downloadnovnc-da82b3426c27bf1a79f671c5825d68ab8c0c5d9f.tar.gz
Release 0.6.1v0.6.1
Fixes version number mismatch (also adds more detailed instructions for releasing). Fixes #628
-rw-r--r--docs/VERSION2
-rw-r--r--docs/release.txt43
-rw-r--r--package.json2
3 files changed, 36 insertions, 11 deletions
diff --git a/docs/VERSION b/docs/VERSION
index 5a2a580..ee6cdce 100644
--- a/docs/VERSION
+++ b/docs/VERSION
@@ -1 +1 @@
-0.6
+0.6.1
diff --git a/docs/release.txt b/docs/release.txt
index 1660b9b..3e03635 100644
--- a/docs/release.txt
+++ b/docs/release.txt
@@ -1,9 +1,34 @@
-- Update and commit docs/VERSION
-- Create version tag and tarball from tag
- WVER=0.3
- git tag v${WVER}
- git push origin master
- git push origin v${WVER}
- git archive --format=tar --prefix=novnc-${WVER}/ v${WVER} > novnc-${WVER}.tar
- gzip novnc-${WVER}.tar
-- Upload tarball to repo
+- Decide a new version number X.Y.Z (follow SemVer)
+- Update version in package.json
+- Update version in docs/VERSION
+- Commit the change with a commit like "Release X.Y.Z"
+- Add a new release on GitHub called "vX.Y.Z", and populate it with
+ release notes of the following form (where A.B.C is the last release):
+
+Major Changes Since A.B.C
+=========================
+
+*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)
diff --git a/package.json b/package.json
index 8f12f87..3db93eb 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "noVNC",
- "version": "0.5.1",
+ "version": "0.6.1",
"description": "An HTML5 VNC client",
"main": "karma.conf.js",
"directories": {