diff --git a/CHANGES.rst b/CHANGES.rst index 8294cebf4..90e01c2c7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,40 @@ +pyirf v0.11.0 (2024-05-14) +========================== + +Bug Fixes +--------- + +- Fix ``pyirf.benchmarks.energy_bias_resolution_from_energy_dispersion``. + This function was not adapted to the now correct normalization of the + energy dispersion matrix, resulting in wrong results on the now correct + matrices. [`#268 `__] + + +New Features +------------ + +- Adds an extrapolator for parametrized compontents utilizing blending over visible edges, resulting + in a smooth extrapolation compared to the NearestSimplexExtrapolator. [`#253 `__] + +- Ignore warnings about invalid floating point operations when calculating `n_signal` and `n_signal_weigthed` because the relative sensitivty is frequently NaN. [`#264 `__] + +- Add basic combinatoric fill-value handling for RAD_MAX estimation. [`#282 `__] + + +Maintenance +----------- + +- Clarified some documentation. [`#266 `__] + +- Add support for astropy 6.0. [`#271 `__] + +- Added filling of CREF keyword (IRF axis order) in the output files [`#275 `__] + + + +Refactoring and Optimization +---------------------------- + pyirf v0.10.1 (2023-09-15) ========================== diff --git a/docs/changes/253.feature.rst b/docs/changes/253.feature.rst deleted file mode 100644 index 6f10240a0..000000000 --- a/docs/changes/253.feature.rst +++ /dev/null @@ -1,2 +0,0 @@ -Adds an extrapolator for parametrized compontents utilizing blending over visible edges, resulting -in a smooth extrapolation compared to the NearestSimplexExtrapolator. diff --git a/docs/changes/264.feature.rst b/docs/changes/264.feature.rst deleted file mode 100644 index cde1ec34c..000000000 --- a/docs/changes/264.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Ignore warnings about invalid floating point operations when calculating `n_signal` and `n_signal_weigthed` because the relative sensitivty is frequently NaN. diff --git a/docs/changes/266.maintenance.rst b/docs/changes/266.maintenance.rst deleted file mode 100644 index f5fdd08cc..000000000 --- a/docs/changes/266.maintenance.rst +++ /dev/null @@ -1 +0,0 @@ -Clarified some documentation. diff --git a/docs/changes/268.bugfix.rst b/docs/changes/268.bugfix.rst deleted file mode 100644 index 7458041a1..000000000 --- a/docs/changes/268.bugfix.rst +++ /dev/null @@ -1,4 +0,0 @@ -Fix ``pyirf.benchmarks.energy_bias_resolution_from_energy_dispersion``. -This function was not adapted to the now correct normalization of the -energy dispersion matrix, resulting in wrong results on the now correct -matrices. diff --git a/docs/changes/271.maintenance.rst b/docs/changes/271.maintenance.rst deleted file mode 100644 index 908e1b838..000000000 --- a/docs/changes/271.maintenance.rst +++ /dev/null @@ -1 +0,0 @@ -Add support for astropy 6.0. diff --git a/docs/changes/275.maintenance.rst b/docs/changes/275.maintenance.rst deleted file mode 100644 index 71ce09633..000000000 --- a/docs/changes/275.maintenance.rst +++ /dev/null @@ -1 +0,0 @@ -Added filling of CREF keyword (IRF axis order) in the output files diff --git a/docs/changes/279.maintenance.rst b/docs/changes/279.maintenance.rst deleted file mode 100644 index b8a69c5d2..000000000 --- a/docs/changes/279.maintenance.rst +++ /dev/null @@ -1 +0,0 @@ -Temporarily fix scipy to <1.12 until gammapy supports API changes introduced with scipy 1.12. diff --git a/docs/changes/282.feature.rst b/docs/changes/282.feature.rst deleted file mode 100644 index 3c61c6a44..000000000 --- a/docs/changes/282.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Add basic combinatoric fill-value handling for RAD_MAX estimation.