Version bump and changelog edits

This commit is contained in:
Anthony Johnson 2015-09-15 14:08:39 -07:00
parent 173cdfc140
commit 1234f126d8
3 changed files with 18 additions and 2 deletions

View File

@ -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
------

View File

@ -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 <dave.snider@gmail.com>"

View File

@ -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__