Skip to content

Commit

Permalink
Release 0.5.1 (#1032)
Browse files Browse the repository at this point in the history
  • Loading branch information
stsewd committed Jan 4, 2021
1 parent 8871d03 commit f6554bf
Show file tree
Hide file tree
Showing 7 changed files with 59 additions and 22 deletions.
25 changes: 22 additions & 3 deletions docs/changelog.rst
Expand Up @@ -5,16 +5,35 @@ Changelog
master
======

Other Changes
-------------
v0.5.1
======

:Date: January 4, 2021

Fixes
-----

* The ``canonical_url`` option was deprecated in favor of Sphinx's ``html_baseurl``.
* Set ``url_root`` properly on index (#1025)
* Do not load ``language_data.js`` in non-search pages (#1021)
* Hide the search box on any ``singlehtml`` like builder (#975)
* Fix ``vcs_pageview_mode`` template parameter (#1010)
* Mark nex/prev icons as aria-hidden (#1007)
* Use well-formed XML syntax (#1006)
* Footer: show both ``commit`` and ``last_updated`` if available (#897)
* Search page: don't show "edit on" links (#935)

New Features
------------

* New theme option to enable anonymous ip addresses when using Google Analytics (#889)

Other Changes
-------------

* The ``canonical_url`` option was deprecated in favor of Sphinx's ``html_baseurl`` (#1003)
* Add ``contentinfo`` block to ``footer.html`` template (#896)
* Make Copyright template match sphinx's basic (#933)
* Packaging: include ``bin/preinstall.js`` (#1005)

v0.5.0
======
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -26,8 +26,8 @@ def is_development_build():

project = u'Read the Docs Sphinx Theme'
slug = re.sub(r'\W+', '-', project.lower())
version = '0.5.0'
release = '0.5.0'
version = '0.5.1'
release = '0.5.1'
author = u'Dave Snider, Read the Docs, Inc. & contributors'
copyright = author
language = 'en'
Expand Down
43 changes: 31 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
@@ -1,8 +1,7 @@
{
"name": "sphinx_rtd_theme",
"main": "js/theme.js",
"version": "0.5.0",
"private": true,
"version": "0.5.1",
"scripts": {
"dev": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.0
current_version = 0.5.1
commit = false
tag = false
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<dev>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -85,7 +85,7 @@ def run(self):

setup(
name='sphinx_rtd_theme',
version='0.5.0',
version='0.5.1',
url='https://github.com/readthedocs/sphinx_rtd_theme',
license='MIT',
author='Dave Snider, Read the Docs, Inc. & contributors',
Expand Down
2 changes: 1 addition & 1 deletion sphinx_rtd_theme/__init__.py
Expand Up @@ -16,7 +16,7 @@
from logging import getLogger


__version__ = '0.5.0'
__version__ = '0.5.1'
__version_full__ = __version__

logger = getLogger(__name__)
Expand Down

0 comments on commit f6554bf

Please sign in to comment.