1
0
Fork 0
mirror of https://github.com/fjosw/pyerrors.git synced 2025-03-15 23:00:25 +01:00

Version number bumped to 2.0.0-rc.2, changelog updated.

This commit is contained in:
Fabian Joswig 2022-03-03 12:06:21 +00:00
parent 329e4abfc3
commit ceb1fabf9a
3 changed files with 4 additions and 2 deletions

View file

@ -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`

View file

@ -1 +1 @@
__version__ = "2.0.0-rc.2+dev"
__version__ = "2.0.0-rc.2"

View file

@ -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',