Skip to content

Commit

Permalink
Prepare 7.7.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
linev committed Aug 23, 2024
1 parent 7f7a08a commit cd1af78
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions build/jsroot.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// https://root.cern/js/ v7.7.x
// https://root.cern/js/ v7.7.3
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
Expand All @@ -7,11 +7,11 @@ typeof define === 'function' && define.amd ? define(['exports'], factory) :

/** @summary version id
* @desc For the JSROOT release the string in format 'major.minor.patch' like '7.0.0' */
const version_id = '7.7.x',
const version_id = '7.7.3',

/** @summary version date
* @desc Release date in format day/month/year like '14/04/2022' */
version_date = '21/08/2024',
version_date = '23/08/2024',

/** @summary version id and date
* @desc Produced by concatenation of {@link version_id} and {@link version_date}
Expand Down
2 changes: 1 addition & 1 deletion changes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# JSROOT changelog

## Changes in 7.7.x
## Changes in 7.7.3
1. Fix - correctly handle in I/O empty std::map
2. Fix - reading of small (<1KB) ROOT files
3. Fix - race condition in zstd initialization #318
Expand Down
4 changes: 2 additions & 2 deletions modules/core.mjs
Original file line number Diff line number Diff line change
@@ -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.x',
const version_id = '7.7.3',

/** @summary version date
* @desc Release date in format day/month/year like '14/04/2022' */
version_date = '21/08/2024',
version_date = '23/08/2024',

/** @summary version id and date
* @desc Produced by concatenation of {@link version_id} and {@link version_date}
Expand Down
2 changes: 1 addition & 1 deletion modules/io.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2033,7 +2033,7 @@ async function R__unzip(arr, tgtsize, noalert, src_shift) {
if (internals._ZstdStream)
promise = Promise.resolve(internals._ZstdStream);
else if (internals._ZstdInit !== undefined)
promise = new Promise(resolveFunc => { internals._ZstdInit.push(resolveFunc); })
promise = new Promise(resolveFunc => { internals._ZstdInit.push(resolveFunc); });
else {
internals._ZstdInit = [];
promise = (isNodeJs() ? import('@oneidentity/zstd-js') : import('./base/zstd.mjs'))
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsroot",
"version": "7.7.x",
"version": "7.7.3",
"engines": {
"node": ">= 0.18.0"
},
Expand Down

0 comments on commit cd1af78

Please sign in to comment.