From 91887f2a9593ab5b54872b9da4d4676406b262f9 Mon Sep 17 00:00:00 2001 From: Tom White Date: Wed, 1 May 2024 14:49:39 +0100 Subject: [PATCH] Update changelog and switcher for 0.8.0 --- docs/_static/switcher.json | 7 ++++++- docs/changelog.rst | 29 ++++++++++++++++++++++------- 2 files changed, 28 insertions(+), 8 deletions(-) diff --git a/docs/_static/switcher.json b/docs/_static/switcher.json index e0563940..f09f0f5b 100644 --- a/docs/_static/switcher.json +++ b/docs/_static/switcher.json @@ -4,7 +4,12 @@ "url": "https://sgkit-dev.github.io/sgkit/latest/" }, { - "name": "0.7.0 (stable)", + "name": "0.8.0 (stable)", + "version": "0.7.0", + "url": "https://sgkit-dev.github.io/sgkit/0.8.0/" + }, + { + "name": "0.7.0", "version": "0.7.0", "url": "https://sgkit-dev.github.io/sgkit/0.7.0/" }, diff --git a/docs/changelog.rst b/docs/changelog.rst index a24df4b8..3e5b1557 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,7 +5,7 @@ Changelog .. _changelog.0.8.0: -0.8.0 (unreleased) +0.8.0 (1 May 2024) ----------------------- New Features @@ -43,12 +43,27 @@ Bug fixes fields were marked as the corresponding "fill" value. For example, missing string values were stored as the empty string (string fill value) rather than "." (string missing value). Similarly for integer fields, missing - values were stored as -2 (int fill) rather than -1 (int missing) - (:user:`jeromekelleher`, :pr:`1190`, :issue:`1192`). - - -.. Documentation -.. ~~~~~~~~~~~~~ + values were stored as -2 (int fill) rather than -1 (int missing). + (:user:`jeromekelleher`, :pr:`1190`, :issue:`1192`) +- Change `max_str_len` utility function to return a Python int rather than + an array scalar. + (:user:`tomwhite`, :pr:`1086`, :issue:`1085`) +- Turn off numba cache by default. + (:user:`jeromekelleher`, :pr:`1191`, :issue:`1156`) +- Fix xarray repr in doctests. + (:user:`tomwhite`, :pr:`1205`, :issue:`1204`) +- Avoid disabling jit on guvectorised functions. + (:user:`timothymillar`, :pr:`1199`, :issue:`1194`) + +Documentation +~~~~~~~~~~~~~ + +- Add tutorial on relationship matrices. + (:user:`timothymillar`, :pr:`1072`, :issue:`956`) +- Add pairwise_distance to docs. + (:user:`benjeffery`, :pr:`1145`, :issue:`1142`) +- Format matrix in pairwise docs. + (:user:`benjeffery`, :pr:`1148`, :issue:`1147`) .. _changelog.0.7.0: