Release 3.0.0rc4

This commit is contained in:
Manuel Kaufmann 2024-10-02 13:54:28 +02:00
parent 5b181b89fb
commit 814686ee1f
6 changed files with 15 additions and 6 deletions

View File

@ -4,10 +4,19 @@ Changelog
.. seealso:: :ref:`howto_upgrade`
.. |theme_version| replace:: 3.0.0rc3
.. |theme_version| replace:: 3.0.0rc4
.. _release-3.0.0rc1:
3.0.0rc4
========
Fixes
-----
* Trigger "Read the Docs Search addon" when focusing the "Search docs" input in the navbar.
3.0.0rc3
========

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "sphinx_rtd_theme",
"version": "3.0.0rc3",
"version": "3.0.0rc4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

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

View File

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