From 7ae1de709cbc66916d8dd630f64f6f1c4fda608c Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Thu, 8 Sep 2022 11:17:52 +0200 Subject: [PATCH] 2.13.0a2 release notes (#1126) * 2.13.0a2 release notes * release note cleanup * Make left-panel links darker * Try rgb color * Darken toc text and lighten background * More light purple * Even MORE purple! --- docs/_static/custom.css | 14 +++++++++----- docs/release.rst | 41 +++++++++++++++++++++++++++++++++-------- 2 files changed, 42 insertions(+), 13 deletions(-) diff --git a/docs/_static/custom.css b/docs/_static/custom.css index 0c391c1c7e..a0e3929e87 100644 --- a/docs/_static/custom.css +++ b/docs/_static/custom.css @@ -1,19 +1,23 @@ +/* override text color */ +.wy-menu-vertical a { + color: #000000; +} /* Sidebar background color */ .wy-nav-side, div.wy-side-nav-search { - background-color: rgb(38, 34, 98, 0); /* full alpha */ + background-color: rgb(198, 197, 213, 0); /* full alpha */ } /* Sidebar link click color */ .wy-menu-vertical .toctree-l1 > a:active { - background-color: rgb(38, 34, 98); - color: rgb(252, 252, 252); + background-color: rgb(198, 197, 213); + color: rgb(0, 0, 0); } /* Link color is darker to make hovering more clear */ .wy-menu-vertical .toctree-l1 > a:hover { - background-color: rgb(25, 22, 65); - color: rgb(252, 252, 252); + background-color: rgb(198, 197, 213); + color: rgb(0, 0, 0); } .wy-menu-vertical li.current > a:hover, .wy-menu-vertical li.current > a:active { diff --git a/docs/release.rst b/docs/release.rst index 15a03e5895..b79341df52 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -21,34 +21,59 @@ Release notes Major changes ~~~~~~~~~~~~~ -* Remove support for Python 3.7 in concert with NumPy dependency. - By :user:`Davis Bennett `; :issue:`1067`. +* **Support of alternative array classes** by introducing a new argument, + meta_array, that specifies the type/class of the underlying array. The + meta_array argument can be any class instance that can be used as the like + argument in NumPy (see `NEP 35 + `_). + enabling support for CuPy through, for example, the creation of a CuPy CPU + compressor. + By :user:`Mads R. B. Kristensen ` :issue:`934`. + +* **Remove support for Python 3.7** in concert with NumPy dependency. + By :user:`Davis Bennett ` :issue:`1067`. + +* **Zarr v3: add support for the default root path** rather than requiring + that all API users pass an explicit path. + By :user:`Gregory R. Lee ` :issue:`1085`. + Bug fixes ~~~~~~~~~ +* Remove/relax erroneous "meta" path check (**regression**). + By :user:`Gregory R. Lee ` :issue:`1123`. + +* Cast all attribute keys to strings (and issue deprecation warning). + By :user:`Mattia Almansi ` :issue:`1066`. + * Fix bug in N5 storage that prevented arrays located in the root of the hierarchy from bearing the `n5` keyword. Along with fixing this bug, new tests were added for N5 routines that had previously been excluded from testing, and type annotations were added to the N5 codebase. - By :user:`Davis Bennett `; :issue:`1092`. + By :user:`Davis Bennett ` :issue:`1092`. * Fix bug in LRUEStoreCache in which the current size wasn't reset on invalidation. By :user:`BGCMHou ` and :user:`Josh Moore ` :issue:`1076`, :issue:`1077`. * Remove erroneous check that disallowed array keys starting with "meta". - By :user:`Gregory R. Lee `; :issue:`1105`. + By :user:`Gregory R. Lee ` :issue:`1105`. Documentation ~~~~~~~~~~~~~ * Typo fixes to close quotes. By :user:`Pavithra Eswaramoorthy ` -* Added copy button to documentation :user:`Altay Sansal ` + +* Added copy button to documentation. + By :user:`Altay Sansal ` :issue:`1124`. Maintenance ~~~~~~~~~~~ +* Simplify release docs. + By :user:`Josh Moore ` :issue:`1119`. + * Pin werkzeug to prevent test hangs. - By :user:`Davis Bennett `; :issue:`1098`. + By :user:`Davis Bennett ` :issue:`1098`. * Fix a few DeepSource.io alerts By :user:`Dimitri Papadopoulos Orfanos ` :issue:`1080`. @@ -63,10 +88,10 @@ Maintenance By :user:`Saransh Chopra ` :issue:`1079`. * Remove option to return None from _ensure_store. - By :user:`Greggory Lee `; :issue:`1068`. + By :user:`Greggory Lee ` :issue:`1068`. * Fix a typo of "integers". - By :user:`Richard Scott `; :issue:`1056`. + By :user:`Richard Scott ` :issue:`1056`. .. _release_2.12.0: