Released version 3.1.0
This commit is contained in:
parent
bc4a0ae25f
commit
e043a500be
|
@ -3,7 +3,7 @@
|
||||||
https://github.com/josdejong/jsoneditor
|
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
|
- 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"}`.
|
valid JSON. For example `{a:2,b:'str'}` can be turned into `{"a":2,"b":"str"}`.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "jsoneditor",
|
"name": "jsoneditor",
|
||||||
"version": "3.1.0-SNAPSHOT",
|
"version": "3.1.0",
|
||||||
"description": "A web-based tool to view, edit and format JSON",
|
"description": "A web-based tool to view, edit and format JSON",
|
||||||
"tags": [
|
"tags": [
|
||||||
"json",
|
"json",
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
* Copyright (c) 2011-2014 Jos de Jong, http://jsoneditoronline.org
|
* Copyright (c) 2011-2014 Jos de Jong, http://jsoneditoronline.org
|
||||||
*
|
*
|
||||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||||
* @version 3.1.0-SNAPSHOT
|
* @version 3.1.0
|
||||||
* @date 2014-07-28
|
* @date 2014-07-28
|
||||||
*/
|
*/
|
||||||
(function webpackUniversalModuleDefinition(root, factory) {
|
(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:
|
Test whether the npm library is ok by installing it locally:
|
||||||
|
|
||||||
cd ../tmp-folder
|
cd ../tmp-folder
|
||||||
npm install ../mathjs
|
npm install ./path/to/jsoneditor
|
||||||
|
|
||||||
Check whether the examples in the library work ok, and whether the necessary
|
Check whether the examples in the library work ok, and whether the necessary
|
||||||
files are included.
|
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).
|
published at cdnjs (should auto update).
|
||||||
|
|
||||||
|
|
||||||
## Test published libraries
|
## Test published library
|
||||||
|
|
||||||
Install the libraries locally and test whether they work correctly:
|
Install the libraries locally and test whether they work correctly:
|
||||||
|
|
||||||
cd tmp-folder
|
cd tmp-folder
|
||||||
npm install mathjs
|
npm install jsoneditor
|
||||||
bower install mathjs
|
bower install jsoneditor
|
||||||
|
|
||||||
|
|
||||||
## Put zip file to website
|
## Put zip file to website
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "jsoneditor",
|
"name": "jsoneditor",
|
||||||
"version": "3.1.0-SNAPSHOT",
|
"version": "3.1.0",
|
||||||
"main": "jsoneditor.js",
|
"main": "jsoneditor.js",
|
||||||
"description": "A web-based tool to view, edit and format JSON",
|
"description": "A web-based tool to view, edit and format JSON",
|
||||||
"tags": [
|
"tags": [
|
||||||
|
|
Loading…
Reference in New Issue