diff --git a/changes.md b/changes.md index 0a232534d..df313294f 100644 --- a/changes.md +++ b/changes.md @@ -1,5 +1,9 @@ # JSROOT changelog +## Changes in 7.7.4 +1. Fix - TGraph Y range selection, do not cross 0 + + ## Changes in 7.7.3 1. Fix - correctly handle in I/O empty std::map 2. Fix - reading of small (<1KB) ROOT files diff --git a/modules/core.mjs b/modules/core.mjs index 8358c8116..f1fb78e02 100644 --- a/modules/core.mjs +++ b/modules/core.mjs @@ -1,10 +1,10 @@ /** @summary version id * @desc For the JSROOT release the string in format 'major.minor.patch' like '7.0.0' */ -const version_id = '7.7.3', +const version_id = '7.7.x', /** @summary version date * @desc Release date in format day/month/year like '14/04/2022' */ -version_date = '23/08/2024', +version_date = '18/09/2024', /** @summary version id and date * @desc Produced by concatenation of {@link version_id} and {@link version_date} diff --git a/package.json b/package.json index 4521be5b7..9b27f10a9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jsroot", - "version": "7.7.3", + "version": "7.7.4", "engines": { "node": ">= 0.18.0" },