@@ -7,6 +7,52 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ### Added
11+
12+ - added a ` fix_convolution ` method to integrate out one of the convolution
13+ dimensions in a grid by convolving it with a non-perturbative function
14+
15+ ## [ 1.3.0] - 06/12/2025
16+
17+ ### Added
18+
19+ - added a ` pineappl_grid_delete_bins ` method to the C-API
20+
21+ ### Fixed
22+
23+ - fixed bugs in stopping condition of the Newton iteration method
24+ - fixed a bug in comparing ` interpolation::Interp ` objects when one of the
25+ boundaries is ` NaN `
26+
27+ ## [ 1.2.0] - 22/08/2025
28+
29+ ### Added
30+
31+ - added ` Grid::repair ` to repair bugs that survived by writing bugged grids to
32+ disk, for example < https://github.com/NNPDF/pineappl/issues/338 > . The CLI
33+ offers this functionality via ` pineappl write --repair ` and it can also be
34+ accessed via Python
35+
36+ ### Fixed
37+
38+ - added a missing implementation for a branch in ` Grid::merge ` that was
39+ triggered when exporting some PineAPPL grids generated from the 'pinejet'
40+ group
41+ - fixed wrong coupling orders when exporting to APPLgrid. This happened when
42+ the PineAPPL grid had orders that had any other ordering than 'LO', 'NLO',
43+ 'NNLO'
44+ - fixed a bug that caused exported grids to compare unsuccessfully when the
45+ convolution functions were proton-anti-proton; APPLgrid doesn't store the
46+ types of convolution functions, so we simply convert the grid to use only
47+ proton PDFs
48+
49+ ### Changed
50+
51+ - the function ` Grid::evolve ` now makes use of parallelization to take advantage
52+ of the number of CPU cores available using the Rayon crate; the number of CPU
53+ cores to be used can be controlled via the ` RAYON_NUM_THREADS ` environment
54+ variable
55+
1056## [ 1.1.0] - 08/07/2025
1157
1258### Added
@@ -782,7 +828,9 @@ the old file format can still be read with this new version.
782828
783829- first release
784830
785- [ Unreleased ] : https://github.com/NNPDF/pineappl/compare/v1.1.0...HEAD
831+ [ Unreleased ] : https://github.com/NNPDF/pineappl/compare/v1.3.0...HEAD
832+ [ 1.3.0 ] : https://github.com/NNPDF/pineappl/compare/v1.2.0...v1.3.0
833+ [ 1.2.0 ] : https://github.com/NNPDF/pineappl/compare/v1.1.0...v1.2.0
786834[ 1.1.0 ] : https://github.com/NNPDF/pineappl/compare/v1.0.0...v1.1.0
787835[ 1.0.0 ] : https://github.com/NNPDF/pineappl/compare/v0.8.2...v1.0.0
788836[ 0.8.7 ] : https://github.com/NNPDF/pineappl/compare/v0.8.6...v0.8.7
0 commit comments