Skip to content

Commit b82db24

Browse files
committed
Prepare for 6.3.0 release
1 parent de83fa9 commit b82db24

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

changes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# JSROOT changelog
22

3-
## Changes in dev
3+
## Changes in 6.3.0
44
1. Fully rewrite TLatex parsing, use svg elements instead of plain text/tspan
55
2. Make TLatex reliably working in node.js, does not depend from availability of canvas component
66
3. Many optimizations to produce smaller (and faster) SVG output
77
4. Provide x3dscNNN and y3dscNNN draw option for histogram to resize x/y axis in 3D plots
88
5. Provide "Find label" command in TAxis context menu to zoom into bin region
99
6. Allows to use JSROOT.define() in external scripts
10-
7. Provide JSROOT.Painter.setDefaultDrawOpt to change class default draw option
11-
8. Provide example of custom entries in context menu
10+
7. Provide JSROOT.Painter.setDefaultDrawOpt() to change class default draw option
11+
8. Provide example of custom entries in histogram context menu
1212
9. Provide alternative external location for zstd-codec, let use zstd even when not found locally
1313
10. Let skip HEAD requests when reading files, adding "^" symbol to file name (#223)
1414
11. Show long histogram names in stats box when possible

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsroot",
3-
"version": "6.2.99",
3+
"version": "6.3.0",
44
"engines": {
55
"node": ">=0.10"
66
},

scripts/JSRoot.core.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,17 +98,17 @@
9898
"use strict";
9999

100100
/** @summary JSROOT version id
101-
* @desc For the JSROOT release the string in format "major.minor.patch" like "6.0.0"
102-
* For the ROOT release string is "ROOT major.minor.patch" like "ROOT 6.24.00" */
103-
JSROOT.version_id = "dev";
101+
* @desc For the JSROOT release the string in format "major.minor.patch" like "6.3.0"
102+
* For the ROOT release string is "ROOT major.minor.patch" like "ROOT 6.26.00" */
103+
JSROOT.version_id = "6.3.0";
104104

105105
/** @summary JSROOT version date
106-
* @desc Release date in format day/month/year like "14/01/2021"*/
106+
* @desc Release date in format day/month/year like "19/11/2021"*/
107107
JSROOT.version_date = "19/11/2021";
108108

109109
/** @summary JSROOT version id and date
110110
* @desc Produced by concatenation of {@link JSROOT.version_id} and {@link JSROOT.version_date}
111-
* Like "6.0.0 14/01/2021" */
111+
* Like "6.3.0 19/11/2021" */
112112
JSROOT.version = JSROOT.version_id + " " + JSROOT.version_date;
113113

114114
/** @summary Location of JSROOT scripts

0 commit comments

Comments
 (0)