From cfa30f3d53dd4eeb235f4732881d7a75fb945ed6 Mon Sep 17 00:00:00 2001 From: A-Baji Date: Wed, 15 Nov 2023 17:32:34 -0600 Subject: [PATCH 1/2] docs: :lipstick: remove black table text for fark mode --- docs/src/.overrides/assets/stylesheets/extra.css | 5 ----- 1 file changed, 5 deletions(-) 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 From f775087e18284267841102c6dedd5ffe6130dbfe Mon Sep 17 00:00:00 2001 From: A-Baji Date: Thu, 16 Nov 2023 10:25:27 -0600 Subject: [PATCH 2/2] docs: :memo: changelog --- CHANGELOG.md | 4 +++- pharus/server.py | 2 +- pharus/version.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) 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/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"