File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed
Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ )
66
7+ ## [ Version 1.5.2]
8+
9+ Date: 2025-07-23
10+
11+ This update mainly fixes a couple of bugs in event generator mode (thanks to [ A. Ohlson] ( https://github.com/aohlson ) ).
12+ Namely, it fixes a bug causing infinite loop in the event generator when the number of particles in the event is zero.
13+ This can happen when simulating low-multiplicity proton-proton collisions with local charge conservation.
14+ It also fixes an issue with initialization of Breit-Wigner distributions in the event generator, which could cause invalid_argument exceptions.
15+
16+ ## Bugfixes
17+ - Fixed a bug in the event generator causing infinite loop when the number of particles in the event is zero
18+ - Fixed an issue with initialization of Breit-Wigner distributions by properly checking if the width is zero
19+
20+ ## Enhancements
21+ - Implemented $m \to 0$ limit for quantum statistics calculations using cluster expansion
22+ - Added additional flag checks for ThermalModelCanonical calculations
23+
724## [ Version 1.5.1]
825
926Date: 2025-07-06
@@ -350,7 +367,10 @@ Date: 2018-08-02
350367
351368** The first public version of Thermal-FIST**
352369
370+ [ Version 1.5.2 ] : https://github.com/vlvovch/Thermal-FIST/compare/v1.5.1...v1.5.2
371+
353372[ Version 1.5.1 ] : https://github.com/vlvovch/Thermal-FIST/compare/v1.5...v1.5.1
373+
354374[ Version 1.5 ] : https://github.com/vlvovch/Thermal-FIST/compare/v1.4.2...v1.5
355375
356376[ Version 1.4.2 ] : https://github.com/vlvovch/Thermal-FIST/compare/v1.4.1...v1.4.2
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ project (ThermalFIST)
88# The version number.
99set (ThermalFIST_VERSION_MAJOR 1)
1010set (ThermalFIST_VERSION_MINOR 5)
11- set (ThermalFIST_VERSION_DEVEL 1 )
11+ set (ThermalFIST_VERSION_DEVEL 2 )
1212
1313# configure a header file to pass some of the CMake settings
1414# to the source code
You can’t perform that action at this time.
0 commit comments