Skip to content

Commit

Permalink
Release 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
humitos committed Oct 7, 2024
1 parent 814686e commit a1c2147
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 7 deletions.
14 changes: 12 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,16 @@ Changelog

.. seealso:: :ref:`howto_upgrade`

.. |theme_version| replace:: 3.0.0rc4
.. |theme_version| replace:: 3.0.0

.. _release-3.0.0rc1:
.. _release-3.0.0:

3.0.0
=====

Final version.

.. _release-3.0.0rc4:

3.0.0rc4
========
Expand All @@ -16,6 +23,7 @@ Fixes

* Trigger "Read the Docs Search addon" when focusing the "Search docs" input in the navbar.

.. _release-3.0.0rc3:

3.0.0rc3
========
Expand All @@ -25,6 +33,7 @@ Fixes

* Show hidden version in selector if it's the current active version

.. _release-3.0.0rc2:

3.0.0rc2
========
Expand All @@ -35,6 +44,7 @@ Added
* Render version and language selectors below the documentation's title (top left).
This can be controlled via the new theme options ``version_selector`` and ``language_selector``.

.. _release-3.0.0rc1:

3.0.0rc1
========
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sphinx_rtd_theme",
"main": "js/theme.js",
"version": "3.0.0rc4",
"version": "3.0.0",
"scripts": {
"dev": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.0.0rc4
current_version = 3.0.0
commit = false
tag = false
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<dev>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def run(self):


setup(
version='3.0.0rc4',
version='3.0.0',
cmdclass={
'update_translations': UpdateTranslationsCommand,
'transifex': TransifexCommand,
Expand Down
2 changes: 1 addition & 1 deletion sphinx_rtd_theme/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from sphinx.util.logging import getLogger


__version__ = '3.0.0rc4'
__version__ = '3.0.0'
__version_full__ = __version__

logger = getLogger(__name__)
Expand Down

0 comments on commit a1c2147

Please sign in to comment.