Released version 3.1.0
This commit is contained in:
parent
bc4a0ae25f
commit
e043a500be
|
@ -3,7 +3,7 @@
|
|||
https://github.com/josdejong/jsoneditor
|
||||
|
||||
|
||||
## not yet released, version 3.1.0
|
||||
## 2014-07-28, version 3.1.0
|
||||
|
||||
- JSONEditor now accepts JavaScript objects as input, and can turn them into
|
||||
valid JSON. For example `{a:2,b:'str'}` can be turned into `{"a":2,"b":"str"}`.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "jsoneditor",
|
||||
"version": "3.1.0-SNAPSHOT",
|
||||
"version": "3.1.0",
|
||||
"description": "A web-based tool to view, edit and format JSON",
|
||||
"tags": [
|
||||
"json",
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
* Copyright (c) 2011-2014 Jos de Jong, http://jsoneditoronline.org
|
||||
*
|
||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||
* @version 3.1.0-SNAPSHOT
|
||||
* @version 3.1.0
|
||||
* @date 2014-07-28
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -29,7 +29,7 @@ correct date and version number in the header.
|
|||
Test whether the npm library is ok by installing it locally:
|
||||
|
||||
cd ../tmp-folder
|
||||
npm install ../mathjs
|
||||
npm install ./path/to/jsoneditor
|
||||
|
||||
Check whether the examples in the library work ok, and whether the necessary
|
||||
files are included.
|
||||
|
@ -57,13 +57,13 @@ Publish at cdnjs: test after 30 to 60 minutes whether the new version is
|
|||
published at cdnjs (should auto update).
|
||||
|
||||
|
||||
## Test published libraries
|
||||
## Test published library
|
||||
|
||||
Install the libraries locally and test whether they work correctly:
|
||||
|
||||
cd tmp-folder
|
||||
npm install mathjs
|
||||
bower install mathjs
|
||||
npm install jsoneditor
|
||||
bower install jsoneditor
|
||||
|
||||
|
||||
## Put zip file to website
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "jsoneditor",
|
||||
"version": "3.1.0-SNAPSHOT",
|
||||
"version": "3.1.0",
|
||||
"main": "jsoneditor.js",
|
||||
"description": "A web-based tool to view, edit and format JSON",
|
||||
"tags": [
|
||||
|
|
Loading…
Reference in New Issue