Skip to content

Commit 4c6204d

Browse files
committed
Prepare 7.4.2 release
1 parent 0804b91 commit 4c6204d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build/jsroot.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ typeof define === 'function' && define.amd ? define(['exports'], factory) :
77

88
/** @summary version id
99
* @desc For the JSROOT release the string in format 'major.minor.patch' like '7.0.0' */
10-
let version_id = '7.4.x';
10+
let version_id = '7.4.2';
1111

1212
/** @summary version date
1313
* @desc Release date in format day/month/year like '14/04/2022' */
@@ -110322,6 +110322,7 @@ function proivdeEvalPar(obj) {
110322110322
.replace(/\b(cos)\b/gi, 'Math.cos')
110323110323
.replace(/\b(tan)\b/gi, 'Math.tan')
110324110324
.replace(/\b(exp)\b/gi, 'Math.exp')
110325+
.replace(/\b(log)\b/gi, 'Math.log')
110325110326
.replace(/\b(log10)\b/gi, 'Math.log10')
110326110327
.replace(/\b(pow)\b/gi, 'Math.pow')
110327110328
.replace(/pi/g, 'Math.PI');

changes.md

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

3-
## Changes in 7.4.x
4-
3+
## Changes in 7.4.2
54
1. Fix - unzoom z on lego2 plots
65
2. Fix - browsing TLists with nullptr inside
76
3. Fix - check NaN values when performing TTree::Draw()
7+
4. Fix - support standard log function in TF1/TF2
88

99

1010
## Changes in 7.4.1
11-
1211
1. Fix - context menu position on lego plots
1312
2. Fix - add missing math functions Chebyshev0 and normalized Gaus
1413
3. Fix - correctly render TPolyLine3D

modules/core.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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 = '7.4.x';
4+
let version_id = '7.4.2';
55

66
/** @summary version date
77
* @desc Release date in format day/month/year like '14/04/2022' */

0 commit comments

Comments
 (0)