diff --git a/CHANGELOG.md b/CHANGELOG.md index 889b21ec..3424e4a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention. +## [0.2.8] - 2023-04-28 + ++ Fix - `.ipynb` output in tutorials is not visible in dark mode. + ## [0.2.7] - 2023-04-19 + Bugfix - A name remapping dictionary was added to ensure consistency between the column names of the `metrics.csv` file and the attribute names of the `QualityMetrics` table @@ -105,6 +109,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and + Add - Probe table supporting: Neuropixels probes 1.0 - 3A, 1.0 - 3B, 2.0 - SS, 2.0 - MS +[0.2.8]: https://github.com/datajoint/element-array-ephys/releases/tag/0.2.8 [0.2.7]: https://github.com/datajoint/element-array-ephys/releases/tag/0.2.7 [0.2.6]: https://github.com/datajoint/element-array-ephys/releases/tag/0.2.6 [0.2.5]: https://github.com/datajoint/element-array-ephys/releases/tag/0.2.5 diff --git a/docs/src/.overrides/assets/stylesheets/extra.css b/docs/src/.overrides/assets/stylesheets/extra.css index 46b6aa59..a4d0061f 100644 --- a/docs/src/.overrides/assets/stylesheets/extra.css +++ b/docs/src/.overrides/assets/stylesheets/extra.css @@ -91,3 +91,7 @@ html a[title="YouTube"].md-social__link svg { /* previous/next text */ /* --md-footer-fg-color: var(--dj-white); */ } + +[data-md-color-scheme="slate"] .jupyter-wrapper .Table Td { + color: var(--dj-black) +} \ No newline at end of file diff --git a/element_array_ephys/version.py b/element_array_ephys/version.py index a298d457..2fd0e253 100644 --- a/element_array_ephys/version.py +++ b/element_array_ephys/version.py @@ -1,2 +1,2 @@ """Package metadata.""" -__version__ = "0.2.7" +__version__ = "0.2.8"