[go: nahoru, domu]

Skip to content

Commit

Permalink
Release 0.6.1
Browse files Browse the repository at this point in the history
Fixes version number mismatch (also adds more detailed instructions
for releasing).

Fixes novnc#628
  • Loading branch information
DirectXMan12 committed Jul 4, 2016
1 parent 5230ab6 commit da82b34
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 11 deletions.
2 changes: 1 addition & 1 deletion docs/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6
0.6.1
43 changes: 34 additions & 9 deletions docs/release.txt
Original file line number Diff line number Diff line change
@@ -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)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "noVNC",
"version": "0.5.1",
"version": "0.6.1",
"description": "An HTML5 VNC client",
"main": "karma.conf.js",
"directories": {
Expand Down

0 comments on commit da82b34

Please sign in to comment.