From c4523d5b6727acc602c905b0b892ffc219f4ef24 Mon Sep 17 00:00:00 2001 From: Alexandru Fikl Date: Wed, 6 Sep 2023 16:03:12 +0300 Subject: [PATCH] chore(docs): add to changelog --- docs/changelog.rst | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 625f695..81bd6c1 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,15 +4,27 @@ Changelog pycaputo 0.2 (TBD) ------------------ +Dependency changes +^^^^^^^^^^^^^^^^^^ + +* Bumped minimum Python version to 3.9 (to match latest Numpy). + Features ^^^^^^^^ -* Bumped minimum Python version to 3.9 (to match latest Numpy). * Added an example with the fractional Lorenz system (:ghpr:`13`). * Support setting a constant for :meth:`~pycaputo.fode.FractionalDifferentialEquationMethod.predict_time_step`. * Add a guess for the number of corrector iterations for :class:`~pycaputo.fode.CaputoPECEMethod` from [Garrappa2010]_. +* Implement :class:`~pycaputo.quadrature.RiemannLiouvilleSimpsonMethod`, a + standard 3rd order method. +* Implement :class:`~pycaputo.quadrature.RiemannLiouvilleCubicHermiteMethod`, a + standard 4th order method. +* Support different fractional orders for FODE systems in + :class:`~pycaputo.fode.CaputoForwardEulerMethod`, + :class:`~pycaputo.fode.CaputoWeightedEulerMethod` and others. +* Add approximation for the Lipschitz contant. Fixes ^^^^^