Skip to content

Commit def732c

Browse files
committed
Start preparation for 7.3.0 release
1 parent afdf254 commit def732c

File tree

3 files changed

+17
-16
lines changed

3 files changed

+17
-16
lines changed

changes.md

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

3-
## Changes in dev
4-
1. Force MathJax rendering when `\` symbol is found (#243)
5-
2. Fix - show correct bin index in TH2 tooltips
6-
3. Mark methods returning `Promise` objects as **async**
7-
4. Fix several bugs in csg.mjs
8-
5. Upgrade three.js to r146
9-
6. Improve geometry clipping
10-
7. 3-dimensional TTree::Draw now produces TPolyMarker3D by default
11-
8. Fix - interactive move/resize on touch devices
12-
9. Provide `settings.PreferSavedPoints` to exclude function evaluation when there are saved points
13-
10. Improve TWebCanvas support
14-
11. Correctly handle axis zooming on lego plots
15-
12. Fix hist stats calculation with negative bins
3+
## Changes in 7.3.0
4+
1. Mark methods returning `Promise` as **async**
5+
2. Upgrade three.js to r146
6+
3. Fix several bugs in `csg.mjs`, improve geometry clipping
7+
4. Provide `settings.PreferSavedPoints` to exclude function evaluation when there are saved points
8+
5. Add more interactive features with `TWebCanvas`
9+
6. 3-dimensional `TTree::Draw()` now produces `TPolyMarker3D` by default
10+
7. Force MathJax rendering when `\` symbol is found (#243)
11+
8. Fix - show correct bin index in `TH2` tooltips
12+
9. Fix - interactive move/resize on touch devices
13+
10. Fix - correctly handle axis zooming on lego plots
14+
11. Fix - histogram statistics calculation with negative bins
15+
12. Base version for ROOT 6.28 release
1616

1717

1818
## Changes in 7.2.1
@@ -136,6 +136,7 @@
136136
12. Fix logic how "ndiv" parameter of TAxis is handled, showing really the configured number of ticks
137137
13. Fix problem with curved TGraph drawings (#218)
138138
14. Fix problems with TGraph drawing updates
139+
15. Base version for ROOT 6.26 release
139140

140141

141142
## Changes in 6.2.2

modules/core.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22
/** @summary version id
33
* @desc For the JSROOT release the string in format 'major.minor.patch' like '7.0.0' */
4-
let version_id = 'dev';
4+
let version_id = '7.3.0';
55

66
/** @summary version date
77
* @desc Release date in format day/month/year like '14/04/2022' */
8-
let version_date = '9/12/2022';
8+
let version_date = '13/12/2022';
99

1010
/** @summary version id and date
1111
* @desc Produced by concatenation of {@link version_id} and {@link version_date}

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": "7.2.99",
3+
"version": "7.3.0",
44
"engines": {
55
"node": ">=0.14.8"
66
},

0 commit comments

Comments
 (0)