Skip to content

Commit 3a3473d

Browse files
authored
Release 3.0.0rc1 (#1597)
1 parent 6b587d1 commit 3a3473d

File tree

6 files changed

+31
-6
lines changed

6 files changed

+31
-6
lines changed

docs/changelog.rst

+26-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,32 @@ Changelog
44

55
.. seealso:: :ref:`howto_upgrade`
66

7-
.. |theme_version| replace:: 2.1.0rc2
7+
.. |theme_version| replace:: 3.0.0rc1
8+
9+
.. _release-3.0.0rc1:
10+
11+
3.0.0rc1
12+
========
13+
14+
Added
15+
-----
16+
17+
* Added support for Sphinx 8.
18+
* Added support for Python 3.12.
19+
* Added support for docutils ``>0.18, <0.22``.
20+
* Populate ``html_context`` with all the environment variables starting with ``READTHEDOCS_``.
21+
22+
Deprecations
23+
------------
24+
25+
* Drop support for Sphinx ``<6.0``.
26+
* Drop support for Python ``<3.8``.
27+
* ``analytics_id`` and ``analytics_anonymize_ip`` are deprecated, use sphinxcontrib-googleanalytics_ instead.
28+
* Drop support for all versions of Internet Explorer.
29+
* Raise a warning when defining ``html_theme_path``. This was an old config that's not required anymore.
30+
* ``extra_css_files`` is deprecated and support will be removed in a future version.
31+
32+
.. _sphinxcontrib-googleanalytics: https://pypi.org/project/sphinxcontrib-googleanalytics/
833

934
.. _release-2.1.0rc2:
1035

package-lock.json

+1-1
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": "2.1.0rc2",
4+
"version": "3.0.0rc1",
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 = 2.1.0rc2
2+
current_version = 3.0.0rc1
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='2.1.0rc2',
89+
version='3.0.0rc1',
9090
cmdclass={
9191
'update_translations': UpdateTranslationsCommand,
9292
'transifex': TransifexCommand,

sphinx_rtd_theme/__init__.py

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

1515

16-
__version__ = '2.1.0rc2'
16+
__version__ = '3.0.0rc1'
1717
__version_full__ = __version__
1818

1919
logger = getLogger(__name__)

0 commit comments

Comments
 (0)