Skip to content

Commit 6959b60

Browse files
committed
Prepare for 7.5.2 release
1 parent aabeac8 commit 6959b60

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

build/jsroot.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ 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-
const version_id = '7.5.x',
10+
const version_id = '7.5.2',
1111

1212
/** @summary version date
1313
* @desc Release date in format day/month/year like '14/04/2022' */
14-
version_date = '30/10/2023',
14+
version_date = '31/10/2023',
1515

1616
/** @summary version id and date
1717
* @desc Produced by concatenation of {@link version_id} and {@link version_date}
@@ -105753,6 +105753,8 @@ let TGraphPainter$1 = class TGraphPainter extends ObjectPainter {
105753105753
* @desc Can be called several times */
105754105754
drawBins(funcs, options, draw_g, w, h, lineatt, fillatt, main_block) {
105755105755
const graph = this.getGraph();
105756+
if (!graph?.fNpoints) return;
105757+
105756105758
let excl_width = 0, drawbins = null;
105757105759

105758105760
if (main_block && lineatt.excl_side) {

changes.md

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

3-
## Change in 7.5.x
3+
## Change in 7.5.2
44
1. Fix - proper fit pars display in stats, proper #chi^{2}
55
2. Fix - several bugs in TFormula parsing
66
3. Fix - correctly use saved buffer in TF1/TF2
77
4. Fix - properly adjust size of stats box
88
5. Fix - support pol0..pol9 functions
99
6. Fix - TGraph bar width should be at least 1 pixel
10+
7. Fix - prevent drawing of empty TGraph
1011

1112

1213
## Changes in 7.5.1

modules/core.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/** @summary version id
22
* @desc For the JSROOT release the string in format 'major.minor.patch' like '7.0.0' */
3-
const version_id = '7.5.x',
3+
const version_id = '7.5.2',
44

55
/** @summary version date
66
* @desc Release date in format day/month/year like '14/04/2022' */
7-
version_date = '30/10/2023',
7+
version_date = '31/10/2023',
88

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

0 commit comments

Comments
 (0)