From b5833585b25358be94918f13c50530e3e9237e7e Mon Sep 17 00:00:00 2001 From: Anthony Date: Thu, 3 Aug 2023 17:49:54 -0700 Subject: [PATCH] 1.3.0rc2 (#1495) The repo is normally bumped to the next up potential release so it doesn't conflict with the current release. --- docs/changelog.rst | 2 +- package.json | 2 +- setup.cfg | 2 +- setup.py | 2 +- sphinx_rtd_theme/__init__.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 6c79a7608..5a3efc33b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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: diff --git a/package.json b/package.json index 88c05cfd8..fdfb5ccc1 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/setup.cfg b/setup.cfg index d263f217a..d84f77ee0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.3.0rc1 +current_version = 1.3.0rc2 commit = false tag = false parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+)(?P\d+))? diff --git a/setup.py b/setup.py index 02d8f53c5..26296a40b 100644 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ def run(self): setup( - version='1.3.0rc1', + version='1.3.0rc2', cmdclass={ 'update_translations': UpdateTranslationsCommand, 'transifex': TransifexCommand, diff --git a/sphinx_rtd_theme/__init__.py b/sphinx_rtd_theme/__init__.py index 198bcc537..977f26ce7 100644 --- a/sphinx_rtd_theme/__init__.py +++ b/sphinx_rtd_theme/__init__.py @@ -12,7 +12,7 @@ from sphinx.util.logging import getLogger -__version__ = '1.3.0rc1' +__version__ = '1.3.0rc2' __version_full__ = __version__ logger = getLogger(__name__)