Skip to content

Commit 6444ca8

Browse files
authored
Release 1.2.0rc3 (#1414)
* Bump version to 1.2.0rc3 * Update changelog with more entries and known issues * Update package-lock
1 parent 5e80b2b commit 6444ca8

File tree

6 files changed

+50
-32
lines changed

6 files changed

+50
-32
lines changed

docs/changelog.rst

+18-3
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,41 @@ Changelog
77
Development version (|development_version|)
88
===========================================
99

10-
.. |development_version| replace:: 1.2.0rc2
10+
.. |development_version| replace:: 1.2.0rc3
1111

1212
Dependency changes
1313
------------------
1414

1515
* docutils 0.18 is supported. (#1381)
16-
* Sphinx 6 support added (#1385)
16+
* Sphinx 6 support added
1717
* Added ``sphinxcontrib-jquery`` as a dependency (#1385)
1818
* Python 3.11 is officially supported and tested. (#1395)
1919
* Python 3.4 and 3.5 are officially not supported (#1395)
2020

2121

22-
Note for users of Sphinx<3
22+
Changes
23+
-------
24+
25+
* Automatically use ``sphinxcontrib-jquery`` in Sphinx 6+ (#1399)
26+
* Use new context vars ``logo_url``, ``favicon_url`` and ``root_doc`` when available (#1405)
27+
28+
Note for users of Sphinx<4
2329
--------------------------
2430

2531
If you cannot use a more recent Sphinx release,
2632
you should at least ensure you are using the most recent release for your major version.
2733
Currently, these are Sphinx `1.8.6` and `2.4.5`.
2834
Older releases may install unsupported versions of several dependencies, including Jinja2 and docutils.
2935

36+
Known issues
37+
------------
38+
39+
In some cases, jQuery is not loaded with Sphinx 6 on Read the Docs.
40+
Workaround: You need to add ``sphinx_rtd_theme`` to ``extensions`` in your ``conf.py``.
41+
See `readthedocs.org issue #9654`_ for updates.
42+
43+
.. _readthedocs.org issue #9654: https://github.com/readthedocs/readthedocs.org/pull/9654
44+
3045
.. _release-1.1.1:
3146

3247
1.1.1

package-lock.json

+28-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
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": "1.2.0rc2",
4+
"version": "1.2.0rc3",
55
"scripts": {
66
"dev": "webpack-dev-server --open --config webpack.dev.js",
77
"build": "webpack --config webpack.prod.js",

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.2.0rc2
2+
current_version = 1.2.0rc3
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def run(self):
8686

8787

8888
setup(
89-
version='1.2.0rc2',
89+
version='1.2.0rc3',
9090
cmdclass={
9191
'update_translations': UpdateTranslationsCommand,
9292
'transifex': TransifexCommand,

sphinx_rtd_theme/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from sphinx.util.logging import getLogger
1313

1414

15-
__version__ = '1.2.0rc2'
15+
__version__ = '1.2.0rc3'
1616
__version_full__ = __version__
1717

1818
logger = getLogger(__name__)

0 commit comments

Comments
 (0)