From ceb1fabf9a06c9ed9ae825911937b3260f4f17d2 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Thu, 3 Mar 2022 12:06:21 +0000 Subject: [PATCH] Version number bumped to 2.0.0-rc.2, changelog updated. --- CHANGELOG.md | 2 ++ pyerrors/version.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2503841..5d78cc00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ All notable changes to this project will be documented in this file. - The fit functions were renamed to `least_squares` and `total_least_squares`. - The output of the fit functions is now a dedicated results class which keeps track of all relevant information - The fit functions can now deal with provided covariance matrices. +- `covariance` can now operate on a list or array of `Obs` and returns a matrix - The convention for the fit range in the Corr class has been changed. - Various method of the `Corr` class were renamed - `Obs.print` was renamed to `Obs.details` and the output was improved. @@ -36,6 +37,7 @@ All notable changes to this project will be documented in this file. ### Removed - The function `plot_corrs` was deprecated as all its functionality is now contained within `Corr.show` +- `fits.covariance_matrix` was removed as it is now redundant with the functionality of `covariance` - The kwarg `bias_correction` in `derived_observable` was removed - Obs no longer have an attribute `e_Q` - Removed `fits.fit_exp` diff --git a/pyerrors/version.py b/pyerrors/version.py index c71c5a3d..b29c5e50 100644 --- a/pyerrors/version.py +++ b/pyerrors/version.py @@ -1 +1 @@ -__version__ = "2.0.0-rc.2+dev" +__version__ = "2.0.0-rc.2" diff --git a/setup.py b/setup.py index 0edc33a9..b3f0c306 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup(name='pyerrors', - version='2.0.0-rc.2+dev', + version='2.0.0-rc.2', description='Error analysis for lattice QCD', author='Fabian Joswig', author_email='fabian.joswig@ed.ac.uk',