From 7f8ad125462a84b5c9e683a815a3358c4c8f92fd Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Sat, 7 Jan 2023 11:29:38 +0100 Subject: [PATCH 1/2] docs: CHANGELOG updated. --- CHANGELOG.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0046eb05..3ee306e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,16 +2,23 @@ All notable changes to this project will be documented in this file. -## [2.5.0] - 2023-xx-xx +## [2.5.0] - 2023-01-07 ### Added +- Alias `gm` for `Obs.gamma_method` added. - Hotelling t-squared p-value added for correlated fits. - String conversion of numpy arrays containing `Obs` improved. -- Alias `gm` for `Obs.gamma_method` added. - Input routine for xSF measurement program added. ### Fixed - Complex valued `Corr` objects fixed. - Small bug in `qtop_projection` fixed. +- Bug in `Corr.spaghetti_plot` fixed which appeared in connection with replica separators. + +### Changed +- Merged `Obs` are no longer filtered as this lead to inconsistent `idl`s in some edge cases. Error estimates are unaffected up to filter precision. + +### Removed +- Removed the `Obs` attribute `is_merged` as this information was only needed for the filtering. The change results in a ~1.15x speed up in the multiplication of two `Obs`. ## [2.4.0] - 2022-12-01 ### Added From 0b2cecfea44351829b67b119c807ea0977f3b5cd Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Sat, 7 Jan 2023 11:30:36 +0100 Subject: [PATCH 2/2] build: version number bumped to 2.5.0 --- pyerrors/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyerrors/version.py b/pyerrors/version.py index 79cae977..50062f87 100644 --- a/pyerrors/version.py +++ b/pyerrors/version.py @@ -1 +1 @@ -__version__ = "2.5.0+dev" +__version__ = "2.5.0"