From 1a73c27c8d7ac9a539ba4e33d31ab59a9cbe9e1e Mon Sep 17 00:00:00 2001 From: Maximilian Linhoff Date: Thu, 11 May 2023 10:37:58 +0200 Subject: [PATCH] Render changelog to prepare for v0.19.1 release --- CHANGES.rst | 44 +++++++++++++++++++++++++++++++ docs/changes/2107.maintenance.rst | 1 - docs/changes/2308.feature.rst | 7 ----- docs/changes/2310.feature.rst | 2 -- docs/changes/2311.bugfix.rst | 1 - docs/changes/2312.bugfix.rst | 1 - docs/changes/2317.bugfix.rst | 1 - docs/changes/2319.bugfix.rst | 1 - docs/changes/2320.bugfix.rst | 2 -- 9 files changed, 44 insertions(+), 16 deletions(-) delete mode 100644 docs/changes/2107.maintenance.rst delete mode 100644 docs/changes/2308.feature.rst delete mode 100644 docs/changes/2310.feature.rst delete mode 100644 docs/changes/2311.bugfix.rst delete mode 100644 docs/changes/2312.bugfix.rst delete mode 100644 docs/changes/2317.bugfix.rst delete mode 100644 docs/changes/2319.bugfix.rst delete mode 100644 docs/changes/2320.bugfix.rst diff --git a/CHANGES.rst b/CHANGES.rst index 050592a1d2b..e104cd2986a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,47 @@ +ctapipe v0.19.1 (2023-05-11) +============================ + +This release is a small bugfix release for v0.19.0, that also includes a new feature enabling computing different +telescope multiplicities in the machine learning feature generation. + +Thanks to the release of numba 0.57 and some minor fixes, ctapipe is now also compatible with Python 3.11. + +Bug Fixes +--------- + +- Fix ``ApplyModels.overwrite``. [`#2311 `__] + +- Fix for config files not being included as inputs in provenance log. [`#2312 `__] + +- Fix calculation of the neighbor matrix of ``CameraGeometry`` for empty and single-pixel geometries. [`#2317 `__] + +- Fix HDF5Writer not working on windows due to using pathlib for hdf5 dataset names. [`#2319 `__] + +- Fix StereoTrigger assuming the wrong data type for ``tels_with_trigger``, resulting in + it not working for actual events read from an EventSource. [`#2320 `__] + +- Allow disabling the cross validation (by setting ``CrossValidator.n_cross_validations = 0``) + for the train tools. [`#2310 `__] + + +New Features +------------ + +- Add ``SubarrayDescription.mulitplicity`` method that can compute + telescope multiplicity for a given telescope boolean mask, either for + all telescope or a given telescope type. + + Enable adding additional keyword arguments to ``FeatureGenerator``. + + Pass the ``SubarrayDescription`` to ``FeatureGenerator`` in sklearn classes. [`#2308 `__] + + +Maintenance +----------- + +- Add support for python 3.11. [`#2107 `__] + + ctapipe v0.19.0 (2023-03-30) ============================ diff --git a/docs/changes/2107.maintenance.rst b/docs/changes/2107.maintenance.rst deleted file mode 100644 index 93153ceb8ef..00000000000 --- a/docs/changes/2107.maintenance.rst +++ /dev/null @@ -1 +0,0 @@ -Add support for python 3.11. diff --git a/docs/changes/2308.feature.rst b/docs/changes/2308.feature.rst deleted file mode 100644 index 83bcdd22caf..00000000000 --- a/docs/changes/2308.feature.rst +++ /dev/null @@ -1,7 +0,0 @@ -Add ``SubarrayDescription.mulitplicity`` method that can compute -telescope multiplicity for a given telescope boolean mask, either for -all telescope or a given telescope type. - -Enable adding additional keyword arguments to ``FeatureGenerator``. - -Pass the ``SubarrayDescription`` to ``FeatureGenerator`` in sklearn classes. diff --git a/docs/changes/2310.feature.rst b/docs/changes/2310.feature.rst deleted file mode 100644 index f6380d454ef..00000000000 --- a/docs/changes/2310.feature.rst +++ /dev/null @@ -1,2 +0,0 @@ -Allow disabling the cross validation (by setting ``CrossValidator.n_cross_validations = 0``) -for the train tools. diff --git a/docs/changes/2311.bugfix.rst b/docs/changes/2311.bugfix.rst deleted file mode 100644 index 109c27bfeb4..00000000000 --- a/docs/changes/2311.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix ``ApplyModels.overwrite``. diff --git a/docs/changes/2312.bugfix.rst b/docs/changes/2312.bugfix.rst deleted file mode 100644 index cdcf85d1e7c..00000000000 --- a/docs/changes/2312.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix for config files not being included as inputs in provenance log. diff --git a/docs/changes/2317.bugfix.rst b/docs/changes/2317.bugfix.rst deleted file mode 100644 index b6c24d72314..00000000000 --- a/docs/changes/2317.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix calculation of the neighbor matrix of ``CameraGeometry`` for empty and single-pixel geometries. diff --git a/docs/changes/2319.bugfix.rst b/docs/changes/2319.bugfix.rst deleted file mode 100644 index 0058fe72e24..00000000000 --- a/docs/changes/2319.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix HDF5Writer not working on windows due to using pathlib for hdf5 dataset names. diff --git a/docs/changes/2320.bugfix.rst b/docs/changes/2320.bugfix.rst deleted file mode 100644 index 384fb167013..00000000000 --- a/docs/changes/2320.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Fix StereoTrigger assuming the wrong data type for ``tels_with_trigger``, resulting in -it not working for actual events read from an EventSource.