Skip to content

Commit

Permalink
Prepare for 7.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
linev committed Oct 5, 2023
1 parent 773fdec commit 0e2cc1b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build/jsroot.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.5.pre',
const version_id = '7.5.0',

/** @summary version date
* @desc Release date in format day/month/year like '14/04/2022' */
version_date = '4/10/2023',
version_date = '5/10/2023',

/** @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.5
## Changes in 7.5.0
1. Correctly implement `TH2` projections like MERCATOR or PARABOLIC, add MOLLWEIDE
2. Support "pol", "cyl", "sph" and "psr" coordinates systems for lego and surf plots
3. Support orthographic camera for lego and surface plots
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.5.pre',
const version_id = '7.5.0',

/** @summary version date
* @desc Release date in format day/month/year like '14/04/2022' */
version_date = '4/10/2023',
version_date = '5/10/2023',

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

0 comments on commit 0e2cc1b

Please sign in to comment.