build: Version number bumped to 2.1.1, CHANGELOG updated.

This commit is contained in:
Fabian Joswig 2022-06-06 15:56:19 +01:00
parent 155c329921
commit 92285942ac
3 changed files with 7 additions and 2 deletions

View file

@ -2,6 +2,11 @@
All notable changes to this project will be documented in this file. 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
## [2.1.0] - 2022-05-31 ## [2.1.0] - 2022-05-31
### Added ### Added
- `obs.covariance` now has the option to smooth small eigenvalues of the matrix with the method described in hep-lat/9412087. - `obs.covariance` now has the option to smooth small eigenvalues of the matrix with the method described in hep-lat/9412087.

View file

@ -1 +1 @@
__version__ = "2.2.0+dev" __version__ = "2.1.1"

View file

@ -4,7 +4,7 @@ this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text() long_description = (this_directory / "README.md").read_text()
setup(name='pyerrors', setup(name='pyerrors',
version='2.2.0+dev', version='2.1.1',
description='Error analysis for lattice QCD', description='Error analysis for lattice QCD',
long_description=long_description, long_description=long_description,
long_description_content_type='text/markdown', long_description_content_type='text/markdown',