Release 2.0.0rc1 (#1510)

* Release 2.0.0rc1

* Update npm lock file
This commit is contained in:
Anthony
2023-08-21 11:59:16 -07:00
committed by GitHub
parent 0e7b28ad4a
commit 6cf2ae7951
6 changed files with 21 additions and 7 deletions

View File

@@ -4,7 +4,21 @@ Changelog
.. seealso:: :ref:`howto_upgrade`
.. |theme_version| replace:: 1.3.0
.. |theme_version| replace:: 2.0.0rc1
.. _release-2.0.0:
2.0.0rc1
========
Deprecations
------------
* The HTML4 writer is now officially deprecated. An error will be thrown if your
project configuration still uses the HTML4 writer.
* Support for Sphinx versions < 5.0 was removed.
* In addition, our supported dependencies will match the dependencies from our
lowest supported Sphinx release, version 5.0: Python >= 3.6 and docutils > 0.14 and < 0.19
.. _release-1.3.0:

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "sphinx_rtd_theme",
"version": "1.3.0",
"version": "2.0.0rc1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -1,7 +1,7 @@
{
"name": "sphinx_rtd_theme",
"main": "js/theme.js",
"version": "1.3.0",
"version": "2.0.0rc1",
"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.0
current_version = 2.0.0rc1
commit = false
tag = false
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<dev>\d+))?
@@ -19,7 +19,7 @@ project_urls =
Homepage = https://sphinx-rtd-theme.readthedocs.io/
Source Code = https://github.com/readthedocs/sphinx_rtd_theme
Issue Tracker = https://github.com/readthedocs/sphinx_rtd_theme/issues
classifiers =
classifiers =
Framework :: Sphinx
Framework :: Sphinx :: Theme
Development Status :: 5 - Production/Stable

View File

@@ -86,7 +86,7 @@ class TransifexCommand(distutils.cmd.Command):
setup(
version='1.3.0',
version='2.0.0rc1',
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.0'
__version__ = '2.0.0rc1'
__version_full__ = __version__
logger = getLogger(__name__)