Skip to content

Commit ca2719b

Browse files
Merge Release 0.5.2 Changelog into master (#1114)
* Setup: Require docutils<0.17' Docutils 0.17 changes some rendering of properties, until support is added we should probably pin to use an older version. I may not be a bad idea to keep a pinned version in the theme to prevent this issue in the future. * Release 0.5.2 Include a changelog and bump versions * Fix changelog Co-authored-by: Aaron Carlisle <[email protected]>
1 parent aa28eec commit ca2719b

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

docs/changelog.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,16 @@ Fixes
3939
* Respect tab order for prev/next buttons (#1051)
4040
* Nav: Don't toggle terminal nodes (#1049)
4141

42+
v0.5.2
43+
======
44+
45+
:Date: April 5, 2021
46+
47+
.. note:: This commit will not be in ``master``, but was branched directly off ``0.5.1`` to minimize issues.
48+
The next full release will contain all PR's previously merged.
49+
50+
* Depend on docutils < 0.17 (#1113)
51+
4252
v0.5.1
4353
======
4454

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sphinx_rtd_theme",
33
"main": "js/theme.js",
4-
"version": "0.5.1",
4+
"version": "0.5.2",
55
"scripts": {
66
"dev": "webpack-dev-server --open --config webpack.dev.js",
77
"build": "webpack --config webpack.prod.js",

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def run(self):
8787

8888
setup(
8989
name='sphinx_rtd_theme',
90-
version='0.5.1',
90+
version='0.5.2',
9191
url='https://github.com/readthedocs/sphinx_rtd_theme',
9292
license='MIT',
9393
author='Dave Snider, Read the Docs, Inc. & contributors',
@@ -118,6 +118,7 @@ def run(self):
118118
},
119119
install_requires=[
120120
'sphinx>=1.6'
121+
'docutils<0.17', # https://github.com/sphinx-doc/sphinx/issues/9001
121122
],
122123
tests_require=[
123124
'pytest',

0 commit comments

Comments
 (0)