diff --git a/README.rst b/README.rst index 94acd202..f700ffe0 100644 --- a/README.rst +++ b/README.rst @@ -64,6 +64,22 @@ conf.py file: Changelog ========= +v0.1.9 +------ + +* Intermittent scrollbar visibility bug fixed. This change introduces a + backwards incompatible change to the theme's layout HTML. This should only be + a problem for derivative themes that have overridden styling of nav elements + using direct decendant selectors. See `#215`_ for more information. +* Safari overscroll bug fixed +* Version added to the nav header +* Revision id was added to the documentation footer if you are using RTD +* An extra block, ``extrafooter`` was added to allow extra content in the + document footer block +* Fixed modernizr URL +* Small display style changes on code blocks, figure captions, and nav elements + +.. _#215: https://github.com/snide/sphinx_rtd_theme/pull/215 v0.1.8 ------ diff --git a/bower.json b/bower.json index bef4ee05..1c15151d 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "sphinx-rtd-theme", - "version": "0.1.7", + "version": "0.1.9", "homepage": "https://github.com/snide/wyrm", "authors": [ "Dave Snider " diff --git a/sphinx_rtd_theme/__init__.py b/sphinx_rtd_theme/__init__.py index 95ddc52a..88ddcce2 100644 --- a/sphinx_rtd_theme/__init__.py +++ b/sphinx_rtd_theme/__init__.py @@ -5,7 +5,7 @@ From https://github.com/ryan-roemer/sphinx-bootstrap-theme. """ import os -VERSION = (0, 1, 8) +VERSION = (0, 1, 9) __version__ = ".".join(str(v) for v in VERSION) __version_full__ = __version__