diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fedd60a..87e48b9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ Changelog ========= +`2021.11 `_ +------------------------------------------------------------------------------- + +- Fix monospace on buggy Google Chrome (#85) + Contributed by Tushar Sadhwani + + `2021.8 `_ ------------------------------------------------------------------------------ diff --git a/python_docs_theme/theme.conf b/python_docs_theme/theme.conf index 7abfa54..7ba54a8 100644 --- a/python_docs_theme/theme.conf +++ b/python_docs_theme/theme.conf @@ -1,6 +1,6 @@ [theme] inherit = default -stylesheet = pydoctheme.css?2021.8.dev +stylesheet = pydoctheme.css?2021.11 pygments_style = default [options] diff --git a/setup.py b/setup.py index 5fca688..38d43c0 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ name='python-docs-theme', # Version is date based as year.month[.serial], where serial is used # if multiple releases are needed to address build failures. - version='2021.8.dev', + version='2021.11', description='The Sphinx theme for the CPython docs and related projects', long_description=long_description, author='PyPA',