From 571735aeac95e9ac003df8acc24c6cc80c4a54ef Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Mon, 10 Oct 2022 11:06:24 +0100 Subject: [PATCH 1/3] docs: support for python 3.11 added to setup.py --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 5b1a8a55..b68e0408 100644 --- a/setup.py +++ b/setup.py @@ -35,6 +35,7 @@ setup(name='pyerrors', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Topic :: Scientific/Engineering :: Physics' ], ) From 8a40bfc5872116632ba431b8f70060d6180df5e7 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Thu, 13 Oct 2022 12:08:54 +0100 Subject: [PATCH 2/3] docs: CHANGELOG and CITATION file updated. --- CHANGELOG.md | 7 +++++++ CITATION.cff | 1 + 2 files changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d98efb34..a55759ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [2.3.0] - 2022-10-13 +### Added +- `least_squares` and `total_least_squares` fits now have an optional keyword argument `num_grad`. If this argument is set to `True` the error propagation of the fit is performed via numerical instead of automatic differentiation. This options allows for fits functions which contain special functions or which are not analytically known. + +### Fixed +- Bug in `Corr.show` `comp` option fixed. + ## [2.2.0] - 2022-08-01 ### Added - New submodule `input.pandas` added which adds the possibility to read and write pandas DataFrames containing `Obs` or `Corr` objects to csv files or SQLite databases. diff --git a/CITATION.cff b/CITATION.cff index fb58f74d..75e3e86f 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -15,6 +15,7 @@ authors: orcid: 'https://orcid.org/0000-0002-0955-9228' - given-names: Justus T. family-names: Kuhlmann + orcid: 'https://orcid.org/0000-0001-5291-1939' - given-names: Jan family-names: Neuendorf orcid: 'https://orcid.org/0000-0001-6177-7014' From d19ac422e4db3f0decafb8d09461458efaf4b710 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Thu, 13 Oct 2022 12:09:24 +0100 Subject: [PATCH 3/3] build: version number bumped to 2.3.0. --- pyerrors/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyerrors/version.py b/pyerrors/version.py index 89c973b4..55e47090 100644 --- a/pyerrors/version.py +++ b/pyerrors/version.py @@ -1 +1 @@ -__version__ = "2.3.0+dev" +__version__ = "2.3.0"