Skip to content

Commit 7c9b1b5

Browse files
authored
Release 2.0 final (readthedocs#1544)
1 parent c104410 commit 7c9b1b5

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

docs/changelog.rst

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,17 @@ Changelog
44

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

7-
.. |theme_version| replace:: 2.0.0rc5
7+
.. |theme_version| replace:: 2.0.0
88

99
.. _release-2.0.0:
1010

11-
2.0.0rc4
12-
========
11+
2.0.0
12+
=====
1313

1414
Added
1515
-----
1616

17+
* Support for Sphinx versions ``6.x`` and ``7.x``
1718
* Support for docutils ``<=0.20``
1819

1920
Deprecations

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.0.0rc5",
4+
"version": "2.0.0",
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.0.0rc5
2+
current_version = 2.0.0
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.0.0rc5',
89+
version='2.0.0',
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__ = '2.0.0rc5'
15+
__version__ = '2.0.0'
1616
__version_full__ = __version__
1717

1818
logger = getLogger(__name__)

0 commit comments

Comments
 (0)