diff --git a/CHANGELOG.md b/CHANGELOG.md index 1084678..9aa62dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,11 @@ 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.8.10] - 2023-10-10 +## [0.8.10] - 2023-11-16 ### Fixed +- Docs' table cell text color in dark mode [#171](https://github.com/datajoint/pharus/pull/171) - Bug with `/definition` route for part tables [#170](https://github.com/datajoint/pharus/pull/170) ## [0.8.9] - 2023-10-02 @@ -333,6 +334,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and - Support for DataJoint attribute types: `varchar`, `int`, `float`, `datetime`, `date`, `time`, `decimal`, `uuid`. - Check dependency utility to determine child table references. +[0.8.10]: https://github.com/datajoint/pharus/compare/0.8.9...0.8.10 [0.8.9]: https://github.com/datajoint/pharus/compare/0.8.8...0.8.9 [0.8.8]: https://github.com/datajoint/pharus/compare/0.8.7...0.8.8 [0.8.7]: https://github.com/datajoint/pharus/compare/0.8.6...0.8.7 diff --git a/docs/src/.overrides/assets/stylesheets/extra.css b/docs/src/.overrides/assets/stylesheets/extra.css index 420d994..7935e1c 100644 --- a/docs/src/.overrides/assets/stylesheets/extra.css +++ b/docs/src/.overrides/assets/stylesheets/extra.css @@ -94,9 +94,4 @@ html a[title="YouTube"].md-social__link svg { /* footer */ /* previous/next text */ /* --md-footer-fg-color: var(--dj-white); */ -} - -[data-md-color-scheme="slate"] td, -th { - color: var(--dj-black) } \ No newline at end of file diff --git a/pharus/server.py b/pharus/server.py index 975f22f..dc1436f 100644 --- a/pharus/server.py +++ b/pharus/server.py @@ -127,7 +127,7 @@ def api_version() -> str: Content-Type: application/json { - "version": "0.8.9" + "version": "0.8.10" } ``` diff --git a/pharus/version.py b/pharus/version.py index 429387f..09efcf1 100644 --- a/pharus/version.py +++ b/pharus/version.py @@ -1,2 +1,2 @@ """Package metadata.""" -__version__ = "0.8.9" +__version__ = "0.8.10"