From 2ed815ddcc2b8bb272d60c9e1fc9b24b72e59d0c Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Mon, 13 Jun 2022 13:36:14 +0100 Subject: [PATCH] build: version number bumped to 2.1.3, CHANGELOG updated. --- CHANGELOG.md | 4 ++++ pyerrors/version.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b052e0bf..0f900f57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## [2.1.3] - 2022-06-13 +### Fixed +- Further bugs in connection with correlator objects which have arrays with None entries as content fixed. + ## [2.1.2] - 2022-06-10 ### Fixed - Bug in `Corr.matrix_symmetric` fixed which appeared when a time slice contained an array with `None` entries. diff --git a/pyerrors/version.py b/pyerrors/version.py index 0d8c75f0..e835b9d0 100644 --- a/pyerrors/version.py +++ b/pyerrors/version.py @@ -1 +1 @@ -__version__ = "2.2.0+dev" +__version__ = "2.1.3" diff --git a/setup.py b/setup.py index ca4f785d..db07c7f1 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ this_directory = Path(__file__).parent long_description = (this_directory / "README.md").read_text() setup(name='pyerrors', - version='2.2.0+dev', + version='2.1.3', description='Error analysis for lattice QCD', long_description=long_description, long_description_content_type='text/markdown',