Bump to 4.1.2 final

This commit is contained in:
Takeshi KOMIYA
2021-07-27 02:13:32 +09:00
parent 4dc45f0a3d
commit 4ba5c21b01
2 changed files with 4 additions and 16 deletions

16
CHANGES
View File

@@ -1,8 +1,5 @@
Release 4.1.2 (in development)
==============================
Dependencies
------------
Release 4.1.2 (released Jul 27, 2021)
=====================================
Incompatible changes
--------------------
@@ -10,12 +7,6 @@ Incompatible changes
* #9435: linkcheck: Disable checking automatically generated anchors on
github.com (ex. anchors in reST/Markdown documents)
Deprecated
----------
Features added
--------------
Bugs fixed
----------
@@ -27,9 +18,6 @@ Bugs fixed
* #9456: html search: html_copy_source can't control the search summaries
* #9435: linkcheck: Failed to check anchors in github.com
Testing
--------
Release 4.1.1 (released Jul 15, 2021)
=====================================

View File

@@ -27,7 +27,7 @@ if 'PYTHONWARNINGS' not in os.environ:
warnings.filterwarnings('ignore', "'U' mode is deprecated",
DeprecationWarning, module='docutils.io')
__version__ = '4.1.2+'
__version__ = '4.1.2'
__released__ = '4.1.2' # used when Sphinx builds its own docs
#: Version info for better programmatic use.
@@ -38,7 +38,7 @@ __released__ = '4.1.2' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
version_info = (4, 1, 2, 'beta', 0)
version_info = (4, 1, 2, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))