diff --git a/docs/changelog.rst b/docs/changelog.rst index 2c01831ec..194bd3dd6 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,10 +4,17 @@ Changelog .. seealso:: :ref:`howto_upgrade` +.. _release-1.2.1: + |theme_version| =============== -.. |theme_version| replace:: 1.2.1alpha1 +.. |theme_version| replace:: 1.2.1 + +Fixes +----- + +* Load jQuery correctly when using latest sphinxcontrib-jquery release (#1448) .. _release-1.2.0: diff --git a/package.json b/package.json index dcb82c517..e8194b3b8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "sphinx_rtd_theme", "main": "js/theme.js", - "version": "1.2.1alpha1", + "version": "1.2.1", "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 4c07f193f..cd47e76d4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.1alpha1 +current_version = 1.2.1 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 1b74d3061..8eaba3aa3 100644 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ def run(self): setup( - version='1.2.1alpha1', + version='1.2.1', cmdclass={ 'update_translations': UpdateTranslationsCommand, 'transifex': TransifexCommand, diff --git a/sphinx_rtd_theme/__init__.py b/sphinx_rtd_theme/__init__.py index 05cb1920a..8ac220a52 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.2.1alpha1' +__version__ = '1.2.1' __version_full__ = __version__ logger = getLogger(__name__)