From b2847a1f80bce588c986a443fd38d5fae6380e7c Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Sun, 9 Mar 2025 12:35:29 +0100 Subject: [PATCH] [Release] Bump version to 2.14.0 and update CHANGELOG --- CHANGELOG.md | 15 +++++++++++++++ pyerrors/version.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d019608c..7a61e766 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. +## [2.14.0] - 2025-03-09 + +### Added +- Explicit checks of the provided inverse matrix for correlated fits #259 + +### Changed +- Compute derivative for pow explicitly instead of relying on autograd. This results in a ~4x speedup for pow operations #246 +- More explicit exception types #248 + +### Fixed +- Removed the possibility to create an Obs from data on several replica #258 +- Fix range in `set_prange` #247 +- Fix ensemble name handling in sfcf input modules #253 +- Correct error message for fit shape mismatch #257 + ## [2.13.0] - 2024-11-03 ### Added diff --git a/pyerrors/version.py b/pyerrors/version.py index 941c31df..d0979fd0 100644 --- a/pyerrors/version.py +++ b/pyerrors/version.py @@ -1 +1 @@ -__version__ = "2.14.0-dev" +__version__ = "2.14.0"