Browse Source

Updated version number to 0.5.0-SNAPSHOT

css_transitions
josdejong 10 years ago
parent
commit
4e71b1a734
3 changed files with 17 additions and 3 deletions
  1. +1
    -1
      bower.json
  2. +15
    -1
      misc/how_to_publish.md
  3. +1
    -1
      package.json

+ 1
- 1
bower.json View File

@ -1,6 +1,6 @@
{ {
"name": "vis", "name": "vis",
"version": "0.4.0",
"version": "0.5.0-SNAPSHOT",
"description": "A dynamic, browser-based visualization library.", "description": "A dynamic, browser-based visualization library.",
"homepage": "http://visjs.org/", "homepage": "http://visjs.org/",
"repository": { "repository": {

+ 15
- 1
misc/how_to_publish.md View File

@ -49,13 +49,25 @@ This generates the vis.js library in the folder `./dist`.
Verify if it installs the just released version, and verify if it works. Verify if it installs the just released version, and verify if it works.
- Install the libarry via bower:
- Install the library via bower:
bower install vis bower install vis
Verify if it installs the just released version, and verify if it works. Verify if it installs the just released version, and verify if it works.
- Publish the library at cdnjs.org
- clone the cdnjs project
- pull changes: `git pull upstream`
- add the new version of the library under /ajax/libs/vis/
- add new folder /x.y.z/ with the new library
- update the version number in package.json
- test the library by running `npm test`
- then do a pull request with as title "[author] Update vis.js to x.y.z"
(with correct version).
## Update website ## Update website
- Copy the `dist` folder from the `master` branch to the `github-pages` branch. - Copy the `dist` folder from the `master` branch to the `github-pages` branch.
@ -72,6 +84,8 @@ This generates the vis.js library in the folder `./dist`.
node updateversion.js node updateversion.js
- Commit the changes in the `gh-pages` branch.
## Prepare next version ## Prepare next version

+ 1
- 1
package.json View File

@ -1,6 +1,6 @@
{ {
"name": "vis", "name": "vis",
"version": "0.4.0",
"version": "0.5.0-SNAPSHOT",
"description": "A dynamic, browser-based visualization library.", "description": "A dynamic, browser-based visualization library.",
"homepage": "http://visjs.org/", "homepage": "http://visjs.org/",
"repository": { "repository": {

Loading…
Cancel
Save