From bebee7a918b777f740bc6eb8ade021fb40247c2d Mon Sep 17 00:00:00 2001 From: Jos de Jong Date: Thu, 21 Sep 2023 11:38:27 +0200 Subject: [PATCH] chore: publish v9.10.3 --- HISTORY.md | 6 ++++++ misc/how_to_publish.md | 2 +- package-lock.json | 16 ++++++++-------- package.json | 3 ++- 4 files changed, 17 insertions(+), 10 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 49a28e8ca..abdf7cbd1 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -3,6 +3,12 @@ https://github.com/josdejong/jsoneditor +## 2023-09-21, version 9.10.3 + +- Fix #1550: trimming zero in front of a number (#1549). Thanks @DarkFisk. +- Updated dependencies, most notable `ace`, `jsonrepair`, and `vanilla-picker`. + + ## 2023-05-12, version 9.10.2 - Fix option `showErrorTable` (see #1515): diff --git a/misc/how_to_publish.md b/misc/how_to_publish.md index 2421dbd98..d7c512666 100644 --- a/misc/how_to_publish.md +++ b/misc/how_to_publish.md @@ -29,7 +29,7 @@ Run the unit tests and validate whether all tests pass: Build the build (jsoneditor.js, jsoneditor.css, ...) files by running: - npm run build + npm run build-and-test After the build is complete, verify if the files are updated and contain the correct date and version number in the header. diff --git a/package-lock.json b/package-lock.json index b3f3f9473..38ac79c43 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "jsoneditor", - "version": "9.10.2", + "version": "9.10.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "jsoneditor", - "version": "9.10.2", + "version": "9.10.3", "license": "Apache-2.0", "dependencies": { "ace-builds": "^1.27.0", @@ -10607,9 +10607,9 @@ "dev": true }, "node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, "bin": { "semver": "bin/semver" @@ -20496,9 +20496,9 @@ } }, "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true }, "semver-greatest-satisfied-range": { diff --git a/package.json b/package.json index 0615848a9..311c6bcab 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jsoneditor", - "version": "9.10.2", + "version": "9.10.3", "main": "./dist/jsoneditor.min.js", "description": "A web-based tool to view, edit, format, and validate JSON", "tags": [ @@ -19,6 +19,7 @@ "bugs": "https://github.com/josdejong/jsoneditor/issues", "scripts": { "build": "gulp", + "build-and-test": "npm run build && npm test && npm run lint", "minify": "gulp minify", "start": "gulp watch", "test": "mocha test --require @babel/register",