diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2021-07-27 02:13:32 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2021-07-27 02:13:32 +0900 |
commit | 4ba5c21b0182557157710a457bed470d335f7571 (patch) | |
tree | b3b9b8fdc954d2055b7637b3030f0669e17150eb | |
parent | 4dc45f0a3d7e1cd7a1df524c23e8883e7639e95a (diff) | |
download | sphinx-git-4ba5c21b0182557157710a457bed470d335f7571.tar.gz |
Bump to 4.1.2 finalv4.1.2
-rw-r--r-- | CHANGES | 16 | ||||
-rw-r--r-- | sphinx/__init__.py | 4 |
2 files changed, 4 insertions, 16 deletions
@@ -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) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index aa81399bd..25c2f2087 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -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__)) |