diff --git a/CHANGELOG.md b/CHANGELOG.md index 83439799..7abd4b34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +# v0.1.2 - 2021-08-25 + +([full changelog](https://github.com/executablebooks/sphinx-book-theme/compare/v0.1.2...9a2da30342ace86978ddbd345eb69f5b4479b31c)) + +## Enhancements made + +- ✨ IMPROVE: Add chevrons to prev/next [#386](https://github.com/executablebooks/sphinx-book-theme/pull/386) ([@choldgraf](https://github.com/choldgraf)) +- ✨ IMPROVE: Improving accessibility labeling [#375](https://github.com/executablebooks/sphinx-book-theme/pull/375) ([@choldgraf](https://github.com/choldgraf)) +- ✨ IMPROVE: improve math styling [#369](https://github.com/executablebooks/sphinx-book-theme/pull/369) ([@akhmerov](https://github.com/akhmerov)) + +## Bugs fixed + +- 🐛 FIX: Fix translation for prev/next [#384](https://github.com/executablebooks/sphinx-book-theme/pull/384) ([@choldgraf](https://github.com/choldgraf)) + + # v0.1.1...v0.1.2 - 2021-08-06 ([full changelog](https://github.com/executablebooks/sphinx-book-theme/compare/v0.1.1...v0.1.2)) diff --git a/docs/index.md b/docs/index.md index 3faebcf1..c2e31d93 100644 --- a/docs/index.md +++ b/docs/index.md @@ -8,7 +8,7 @@ title: The Sphinx Book Theme :margin: 4 4 1 1 :::{grid-item} -:columns: 12 4 4 4 +:columns: 4 ```{image} ./_static/logo-square.svg :width: 150px @@ -16,7 +16,7 @@ title: The Sphinx Book Theme ::: :::{grid-item} -:columns: 12 8 8 8 +:columns: 8 :class: sd-fs-3 A Sphinx theme with a clean design, support for interactive content, and a modern book-like look and feel. diff --git a/sphinx_book_theme/__init__.py b/sphinx_book_theme/__init__.py index 97727ee2..83d6ef92 100644 --- a/sphinx_book_theme/__init__.py +++ b/sphinx_book_theme/__init__.py @@ -18,7 +18,7 @@ from .launch import add_hub_urls from . import static as theme_static -__version__ = "0.1.2" +__version__ = "0.1.3" """sphinx-book-theme version""" SPHINX_LOGGER = logging.getLogger(__name__)