From df46e7e5c8e6781818af65f4e4178ff7f8fbd269 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Tue, 7 Feb 2023 13:07:48 +0000 Subject: [PATCH 1/2] docs: CHANGELOG updated. --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ee306e3..d72c09a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. +## [2.6.0] - 2023-02-07 +### Added +- The fit module now has a new interface to deal with combined fits. +- `pyerrors` wrapper for matplotlib `errorbar` method added for `Obs` valued lists/arrays. +- roots module can now determine roots of multi parameter `Obs` valued functions. + +### Fixed +- Bug in treatment of error propagation of non-overlapping configurations fixed. +- `Corr.symmetric` can now deal with `None` entries. +- Fix in `ms5_xsf` input routines. +- Bug in `dobs` output format fixed. + ## [2.5.0] - 2023-01-07 ### Added - Alias `gm` for `Obs.gamma_method` added. From b6ebb64469da21f57d7c7b88730c3421a436c071 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Tue, 7 Feb 2023 13:08:29 +0000 Subject: [PATCH 2/2] build: version number bumped to 2.6.0 --- pyerrors/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyerrors/version.py b/pyerrors/version.py index 8df33e99..e5e59e38 100644 --- a/pyerrors/version.py +++ b/pyerrors/version.py @@ -1 +1 @@ -__version__ = "2.6.0+dev" +__version__ = "2.6.0"