Skip to content

Commit f6554bf

Browse files
authored
Release 0.5.1 (#1032)
1 parent 8871d03 commit f6554bf

File tree

7 files changed

+59
-22
lines changed

7 files changed

+59
-22
lines changed

docs/changelog.rst

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,35 @@ Changelog
55
master
66
======
77

8-
Other Changes
9-
-------------
8+
v0.5.1
9+
======
10+
11+
:Date: January 4, 2021
12+
13+
Fixes
14+
-----
1015

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

1325
New Features
1426
------------
1527

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

30+
Other Changes
31+
-------------
32+
33+
* The ``canonical_url`` option was deprecated in favor of Sphinx's ``html_baseurl`` (#1003)
34+
* Add ``contentinfo`` block to ``footer.html`` template (#896)
35+
* Make Copyright template match sphinx's basic (#933)
36+
* Packaging: include ``bin/preinstall.js`` (#1005)
1837

1938
v0.5.0
2039
======

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ def is_development_build():
2626

2727
project = u'Read the Docs Sphinx Theme'
2828
slug = re.sub(r'\W+', '-', project.lower())
29-
version = '0.5.0'
30-
release = '0.5.0'
29+
version = '0.5.1'
30+
release = '0.5.1'
3131
author = u'Dave Snider, Read the Docs, Inc. & contributors'
3232
copyright = author
3333
language = 'en'

package-lock.json

Lines changed: 31 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"name": "sphinx_rtd_theme",
33
"main": "js/theme.js",
4-
"version": "0.5.0",
5-
"private": true,
4+
"version": "0.5.1",
65
"scripts": {
76
"dev": "webpack-dev-server --open --config webpack.dev.js",
87
"build": "webpack --config webpack.prod.js",

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.5.0
2+
current_version = 0.5.1
33
commit = false
44
tag = false
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<dev>\d+))?

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def run(self):
8585

8686
setup(
8787
name='sphinx_rtd_theme',
88-
version='0.5.0',
88+
version='0.5.1',
8989
url='https://github.com/readthedocs/sphinx_rtd_theme',
9090
license='MIT',
9191
author='Dave Snider, Read the Docs, Inc. & contributors',

sphinx_rtd_theme/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from logging import getLogger
1717

1818

19-
__version__ = '0.5.0'
19+
__version__ = '0.5.1'
2020
__version_full__ = __version__
2121

2222
logger = getLogger(__name__)

0 commit comments

Comments
 (0)