The repo is normally bumped to the next up potential release so it
doesn't conflict with the current release.
This commit is contained in:
Anthony 2023-08-03 17:49:54 -07:00 committed by GitHub
parent 775bca403c
commit b5833585b2
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:: 1.3.0rc1
.. |theme_version| replace:: 1.3.0rc2
.. _release-1.3.0:

View File

@ -1,7 +1,7 @@
{
"name": "sphinx_rtd_theme",
"main": "js/theme.js",
"version": "1.3.0rc1",
"version": "1.3.0rc2",
"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 = 1.3.0rc1
current_version = 1.3.0rc2
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='1.3.0rc1',
version='1.3.0rc2',
cmdclass={
'update_translations': UpdateTranslationsCommand,
'transifex': TransifexCommand,

View File

@ -12,7 +12,7 @@ from sphinx.locale import _
from sphinx.util.logging import getLogger
__version__ = '1.3.0rc1'
__version__ = '1.3.0rc2'
__version_full__ = __version__
logger = getLogger(__name__)