From 89880adc55d56ed0df15324dd0dafc9ea726d155 Mon Sep 17 00:00:00 2001 From: Dan Foreman-Mackey Date: Fri, 5 Jan 2024 16:33:30 -0500 Subject: [PATCH] Preparing 0.3.0 release (#202) --- docs/news.rst | 17 +++++++++++++++++ news/188.bugfix | 1 - news/200.feature | 1 - news/90.feature | 2 -- 4 files changed, 17 insertions(+), 4 deletions(-) delete mode 100644 news/188.bugfix delete mode 100644 news/200.feature delete mode 100644 news/90.feature diff --git a/docs/news.rst b/docs/news.rst index ffdb7362..30e17721 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -5,6 +5,23 @@ Release Notes .. towncrier release notes start +tinygp 0.3.0 (2024-01-05) +------------------------- + +Features +~~~~~~~~ + +- Added a more robust and better tested implementation of the ``CARMA`` kernel for + use with the ``QuasisepSolver``. (`#90 `_) +- Switched all base classes to `equinox.Module `_ objects to simplify dataclass handling. (`#200 `_) + + +Bugfixes +~~~~~~~~ + +- Fixed use of `jnp.roots` and `np.roll` to make CARMA kernel jit-compliant. (`#188 `_) + + tinygp 0.2.4 (2023-09-29) ------------------------- diff --git a/news/188.bugfix b/news/188.bugfix deleted file mode 100644 index eae76497..00000000 --- a/news/188.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed use of `jnp.roots` and `np.roll` to make CARMA kernel jit-compliant. diff --git a/news/200.feature b/news/200.feature deleted file mode 100644 index 569ea441..00000000 --- a/news/200.feature +++ /dev/null @@ -1 +0,0 @@ -Switched all base classes to `equinox.Module `_ objects to simplify dataclass handling. diff --git a/news/90.feature b/news/90.feature deleted file mode 100644 index 351b6307..00000000 --- a/news/90.feature +++ /dev/null @@ -1,2 +0,0 @@ -Added a more robust and better tested implementation of the ``CARMA`` kernel for -use with the ``QuasisepSolver``.