Increment for next potential release (#1536)

This commit is contained in:
Anthony 2023-10-24 11:49:43 -07:00 committed by GitHub
parent febde39c7c
commit 84aea9b0ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -4,7 +4,7 @@ Changelog
.. seealso:: :ref:`howto_upgrade`
.. |theme_version| replace:: 2.0.0rc3
.. |theme_version| replace:: 2.0.0rc4
.. _release-2.0.0:

View File

@ -1,7 +1,7 @@
{
"name": "sphinx_rtd_theme",
"main": "js/theme.js",
"version": "2.0.0rc3",
"version": "2.0.0rc4",
"scripts": {
"dev": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.0rc3
current_version = 2.0.0rc4
commit = false
tag = false
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<dev>\d+))?

View File

@ -86,7 +86,7 @@ class TransifexCommand(distutils.cmd.Command):
setup(
version='2.0.0rc3',
version='2.0.0rc4',
cmdclass={
'update_translations': UpdateTranslationsCommand,
'transifex': TransifexCommand,

View File

@ -12,7 +12,7 @@ from sphinx.locale import _
from sphinx.util.logging import getLogger
__version__ = '2.0.0rc3'
__version__ = '2.0.0rc4'
__version_full__ = __version__
logger = getLogger(__name__)