From 3abcf788aa908ea28e6a8fe11743179541a56191 Mon Sep 17 00:00:00 2001 From: renaudjester Date: Tue, 11 Feb 2025 12:29:26 +0100 Subject: [PATCH 1/3] chore: add changelog --- doc/changelog/changelog.rst | 1 + doc/changelog/v201.rst | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 doc/changelog/v201.rst diff --git a/doc/changelog/changelog.rst b/doc/changelog/changelog.rst index 7444edc1..9718b06c 100644 --- a/doc/changelog/changelog.rst +++ b/doc/changelog/changelog.rst @@ -17,3 +17,4 @@ The toolbox follows the `Semantic Versioning `_ scheme. .. toctree:: v2 + v201 diff --git a/doc/changelog/v201.rst b/doc/changelog/v201.rst new file mode 100644 index 00000000..225abc65 --- /dev/null +++ b/doc/changelog/v201.rst @@ -0,0 +1,24 @@ +Release 2.0.1 +===================== + +Patch release with bug fixes and improvements. + +General +'''''''' + +Fixes +------------------ + +* Fixed some typos in the documentation have been fixed. +* Fixed broken links to binaries in the documentation when releasing a new version. They now point to the same version as the version of the documentation. + +Subset +'''''''' + +Fixes +------------------ + +* Fixed a bug where input just outside the range of the dataset would not be handled correctly. +* Fixed a bug when calculating the 'nearest' point for a dataset, it would not always return the correct point. +* Fixed a bug where `pandas.timestamp`` could not be used as input for the subset command. +* Improve the evaluation of the size of the file that the subset command will save locally. From a7d6baf142c6de789d587582d6430e33b0f86ec7 Mon Sep 17 00:00:00 2001 From: renaudjester Date: Tue, 11 Feb 2025 12:34:15 +0100 Subject: [PATCH 2/3] fix: typos --- doc/changelog/v201.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/changelog/v201.rst b/doc/changelog/v201.rst index 225abc65..48382763 100644 --- a/doc/changelog/v201.rst +++ b/doc/changelog/v201.rst @@ -9,7 +9,7 @@ General Fixes ------------------ -* Fixed some typos in the documentation have been fixed. +* Fixed some typos in the documentation. * Fixed broken links to binaries in the documentation when releasing a new version. They now point to the same version as the version of the documentation. Subset @@ -20,5 +20,5 @@ Fixes * Fixed a bug where input just outside the range of the dataset would not be handled correctly. * Fixed a bug when calculating the 'nearest' point for a dataset, it would not always return the correct point. -* Fixed a bug where `pandas.timestamp`` could not be used as input for the subset command. +* Fixed a bug where ``pandas.Timestamp`` could not be used as input for the subset command. * Improve the evaluation of the size of the file that the subset command will save locally. From 9a500cf970f9fae340600a0967154b3e788ab4e2 Mon Sep 17 00:00:00 2001 From: Renaud <38732257+renaudjester@users.noreply.github.com> Date: Tue, 11 Feb 2025 13:15:21 +0100 Subject: [PATCH 3/3] fix: reformulate Co-authored-by: Oriol Ricart Vilarrubias. <45894267+uriii3@users.noreply.github.com> --- doc/changelog/v201.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/changelog/v201.rst b/doc/changelog/v201.rst index 48382763..9592ed8a 100644 --- a/doc/changelog/v201.rst +++ b/doc/changelog/v201.rst @@ -19,6 +19,6 @@ Fixes ------------------ * Fixed a bug where input just outside the range of the dataset would not be handled correctly. -* Fixed a bug when calculating the 'nearest' point for a dataset, it would not always return the correct point. +* Fixed a bug when using the 'nearest' method for a subset selection, it would not always return the correct extreme points. * Fixed a bug where ``pandas.Timestamp`` could not be used as input for the subset command. * Improve the evaluation of the size of the file that the subset command will save locally.