diff --git a/docs/changelog.rst b/docs/changelog.rst index d1d7550..ef0451f 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,12 @@ Changelog Shibuya uses date based release segments. For pre-releases, it follows :pep:`440`. +2024.10.14 +---------- + +- **Fix**: Set ``max-height`` for the sidebar scroller. +- **Fix**: Update background color for :ref:`jupyter-sphinx` code blocks, via :issue:`66`. + 2024.8.30 --------- @@ -147,7 +153,7 @@ Shibuya uses date based release segments. For pre-releases, it follows :pep:`440 - **New**: Added style for ``sphinx-gallery`` and ``xarray``, via :issue:`20`. - **New**: Added **simple** and **landing** layout templates. - **New**: Added two image containers. -- **Fix**: Improve style for ``sphinx-design``, ``sphinx-jupyter``, and etc. +- **Fix**: Improve style for ``sphinx-design``, ``jupyter-sphinx``, and etc. - **Fix**: Improve style for search page. 2023.10.26 @@ -245,7 +251,7 @@ Shibuya uses date based release segments. For pre-releases, it follows :pep:`440 - Fix edit this page link - Fix nav links style -- Update style for :ref:`sphinx-jupyter` +- Update style for :ref:`jupyter-sphinx` 2023.6.8 -------- diff --git a/docs/contributing/roadmap.rst b/docs/contributing/roadmap.rst index ba9583b..ca91618 100644 --- a/docs/contributing/roadmap.rst +++ b/docs/contributing/roadmap.rst @@ -34,7 +34,7 @@ Make sure it works well with other extensions. Currently integrated with: - :bdg-success:`DONE` :ref:`sphinx-copybutton` - :bdg-success:`DONE` :ref:`sphinx-tabs` - :bdg-success:`DONE` :ref:`sphinx-design` -- :bdg-success:`DONE` :ref:`sphinx-jupyter` +- :bdg-success:`DONE` :ref:`jupyter-sphinx` - :bdg-success:`DONE` :ref:`sphinx-togglebutton` - :bdg-success:`DONE` :ref:`nbsphinx` - :bdg-success:`DONE` :ref:`numpydoc` diff --git a/docs/extensions/docsearch.rst b/docs/extensions/docsearch.rst index 538e010..922b575 100644 --- a/docs/extensions/docsearch.rst +++ b/docs/extensions/docsearch.rst @@ -63,7 +63,7 @@ caused by conflicts with other sphinx extensions. nbsphinx_requirejs_path = '' -2. If using together with :ref:`sphinx-jupyter` extension, you can +2. If using together with :ref:`jupyter-sphinx` extension, you can resolve the issue with ``jupyter_sphinx_require_url`` setting: .. code-block:: python diff --git a/docs/extensions/jupyter-sphinx.rst b/docs/extensions/jupyter-sphinx.rst index d779909..9b0a94e 100644 --- a/docs/extensions/jupyter-sphinx.rst +++ b/docs/extensions/jupyter-sphinx.rst @@ -1,6 +1,6 @@ :description: Shibuya Sphinx theme has special design for Jupyter sphinx extension. -.. _sphinx-jupyter: +.. _jupyter-sphinx: jupyter-sphinx ============== diff --git a/docs/extensions/mermaid.rst b/docs/extensions/mermaid.rst index 31afc8c..b917398 100644 --- a/docs/extensions/mermaid.rst +++ b/docs/extensions/mermaid.rst @@ -98,7 +98,7 @@ Here are some possible fixes: nbsphinx_requirejs_path = '' -2. Mermaid extension is conflict with :ref:`sphinx-jupyter` too, you can +2. Mermaid extension is conflict with :ref:`jupyter-sphinx` too, you can resolve the issue with ``jupyter_sphinx_require_url`` setting: .. code-block:: python diff --git a/src/shibuya/__init__.py b/src/shibuya/__init__.py index bdeaab4..e42dad5 100644 --- a/src/shibuya/__init__.py +++ b/src/shibuya/__init__.py @@ -14,7 +14,7 @@ WrapLineFormatter, ) -__version__ = "2024.8.30" +__version__ = "2024.10.14" shibuya_version = __version__