diff --git a/CHANGES.rst b/CHANGES.rst index 90e01c2c..5ccfa7a1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,36 @@ +pyirf v0.12.0 (2024-11-15) +========================== + + +API Changes +----------- + +- Make it possible to pass multiple quantiles to ``pyirf.benchmarks.angular_resolution``, calculating all of them. + + The column name(s) in the output now include(s) the percentage value of the calculated quantile, e.g. ``angular_resolution_68``. [`#290 `__] + + +Bug Fixes +--------- + +- Fix ``pyirf.irfs.energy_dispersion.energy_dispersion_to_migration``. + This function was not adapted to the now correct normalization of the + energy dispersion matrix, resulting in wrong results on the now correct + matrices. [`#273 `__] + + +New Features +------------ + +- Add 3D effective area functions for lon/lat and theta/phi coordinates and some necessary utiliy functions. [`#281 `__] + + +Maintenance +----------- + +- Make pyirf compatible with numpy 2.0. + + pyirf v0.11.0 (2024-05-14) ========================== diff --git a/docs/changes/273.bugfix.rst b/docs/changes/273.bugfix.rst deleted file mode 100644 index 607ffa71..00000000 --- a/docs/changes/273.bugfix.rst +++ /dev/null @@ -1,4 +0,0 @@ -Fix ``pyirf.irfs.energy_dispersion.energy_dispersion_to_migration``. -This function was not adapted to the now correct normalization of the -energy dispersion matrix, resulting in wrong results on the now correct -matrices. \ No newline at end of file diff --git a/docs/changes/281.feature.rst b/docs/changes/281.feature.rst deleted file mode 100644 index 1ad9368c..00000000 --- a/docs/changes/281.feature.rst +++ /dev/null @@ -1,2 +0,0 @@ - -Add 3D effective area functions for lon/lat and theta/phi coordinates and some necessary utiliy functions. diff --git a/docs/changes/289.maintenance.rst b/docs/changes/289.maintenance.rst deleted file mode 100644 index 379a7e43..00000000 --- a/docs/changes/289.maintenance.rst +++ /dev/null @@ -1,3 +0,0 @@ -Make pyirf compatible with numpy 2.0. - -Replace deprecated ``logging.warn`` with ``logging.warning``. diff --git a/docs/changes/290.api.rst b/docs/changes/290.api.rst deleted file mode 100644 index 882b2ba5..00000000 --- a/docs/changes/290.api.rst +++ /dev/null @@ -1,3 +0,0 @@ -Make it possible to pass multiple quantiles to ``pyirf.benchmarks.angular_resolution``, calculating all of them. - -The column name(s) in the output now include(s) the percentage value of the calculated quantile, e.g. ``angular_resolution_68``. diff --git a/docs/changes/template.rst b/docs/changes/template.rst index 1fdc1594..c9f1e06e 100644 --- a/docs/changes/template.rst +++ b/docs/changes/template.rst @@ -1,6 +1,6 @@ {% if render_title %} {% if versiondata.name %} -{{ versiondata.name }} {{ versiondata.version }} ({{ versiondata.date }}) +{{ versiondata.name | lower }} {{ versiondata.version }} ({{ versiondata.date }}) {{ top_underline * ((versiondata.name + versiondata.version + versiondata.date)|length + 4)}} {% else %} {{ versiondata.version }} ({{ versiondata.date }}) @@ -40,4 +40,4 @@ No significant changes. {# No significant changes. #} {% endif %} {% endfor %} -{% endfor %} \ No newline at end of file +{% endfor %}