From 36745f51b9779791053171954a1c6c7527b9c76d Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Mon, 1 Aug 2022 16:56:43 +0100 Subject: [PATCH 1/2] docs: CHANGELOG updated. --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30cd6059..45c31c46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file. - `Obs.reweight` method added in analogy to `Corr.reweight` which allows for a more convenient reweighting of individual observables. - `Corr.show` now has the additional argument `title` which allows to add a title to the figure. Figures are now saved with `bbox_inches='tight'`. - Function for the extraction of the gradient flow coupling added (see 1607.06423 for details). +- `Corr.is_matrix_symmetric` added which efficiently checks whether a correlator matrix is symmetric. This is used to speed up the GEVP method. ### Fixed - `Corr.m_eff` can now deal with correlator entries which are exactly zero. @@ -25,7 +26,7 @@ All notable changes to this project will be documented in this file. ## [2.1.1] - 2022-06-06 ### Fixed - Bug in error propagation of correlated least square fits fixed. -- `Fit_result.gamma_method` can now be called with kwargs +- `Fit_result.gamma_method` can now be called with kwargs. ## [2.1.0] - 2022-05-31 ### Added From 9d9759ae47fc2cbd2cd6536d015099b7de79b9f5 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Mon, 1 Aug 2022 17:10:29 +0100 Subject: [PATCH 2/2] build: version number bumped to 2.2.0 --- CHANGELOG.md | 2 +- pyerrors/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45c31c46..d98efb34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -## [2.2.0] - 2022-xx-xx +## [2.2.0] - 2022-08-01 ### Added - New submodule `input.pandas` added which adds the possibility to read and write pandas DataFrames containing `Obs` or `Corr` objects to csv files or SQLite databases. - `hash` method for `Obs` objects added. diff --git a/pyerrors/version.py b/pyerrors/version.py index 0d8c75f0..8a124bf6 100644 --- a/pyerrors/version.py +++ b/pyerrors/version.py @@ -1 +1 @@ -__version__ = "2.2.0+dev" +__version__ = "2.2.0"