From 500690b266f8d4f216efdf8926975c4a3852e5cd Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Fri, 17 Mar 2023 17:56:40 +0000 Subject: [PATCH 1/3] build: .hypothesis added to gitignore. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index a8338e8f..9d1fd607 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ __pycache__ .coverage .benchmarks .cache +.hypothesis examples/B1k2_pcac_plateau.p examples/Untitled.* examples/pcac_plateau_test_ensemble.json.gz From 64e8e4975eba932dbda4f27c32eb7b4d0843f830 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Tue, 21 Mar 2023 10:28:15 +0100 Subject: [PATCH 2/3] docs: CHANGELOG updated. --- CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d72c09a8..461cc9ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. +## [2.7.0] - 2023-03-21 +### Added +- Alternative way of specifying priors in `least_squares` added. +- Correlated fits now also work with priors. +- Lists of `Obs` can now be serialized and deserialized in pandas.to_sql +- `print_config` function for debugging purposes added. +- `Corr.show` can now visualize results of combined fits. + +### Changed +- Fit routines refactored and simplified. +- sfcf input routines refactored. +- drho is not automatically computed for all windows in the automatic windowing procedure. This change speeds up the `gamma_method` for very long Monte Carlo histories. +- `__slots__` added to `Corr` class. + ## [2.6.0] - 2023-02-07 ### Added - The fit module now has a new interface to deal with combined fits. From 857540dbf8ee4e3e555941a85050946068ea9838 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Tue, 21 Mar 2023 10:29:03 +0100 Subject: [PATCH 3/3] build: version number bumped to 2.7.0 --- pyerrors/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyerrors/version.py b/pyerrors/version.py index 3e4e49a9..2614ce9d 100644 --- a/pyerrors/version.py +++ b/pyerrors/version.py @@ -1 +1 @@ -__version__ = "2.7.0-dev" +__version__ = "2.7.0"