diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2021-07-15 02:22:15 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2021-07-15 02:22:15 +0900 |
commit | 564439e66d81693edd08fa5973a14151af976ca8 (patch) | |
tree | b6ff7815d6d1d6a6d7b22fb6eb66d3c251fe24e9 | |
parent | ffa08315c1589d12657b6d31050f9106eae4bfbe (diff) | |
download | sphinx-git-4.1.1.tar.gz |
Bump to 4.1.1 finalv4.1.1
-rw-r--r-- | CHANGES | 16 | ||||
-rw-r--r-- | sphinx/__init__.py | 4 |
2 files changed, 4 insertions, 16 deletions
@@ -1,5 +1,5 @@ -Release 4.1.1 (in development) -============================== +Release 4.1.1 (released Jul 15, 2021) +===================================== Dependencies ------------ @@ -7,23 +7,11 @@ Dependencies * #9434: sphinxcontrib-htmlhelp-2.0.0 or above * #9434: sphinxcontrib-serializinghtml-1.1.5 or above -Incompatible changes --------------------- - -Deprecated ----------- - -Features added --------------- - Bugs fixed ---------- * #9438: html: HTML logo or Favicon specified as file not being found on output -Testing --------- - Release 4.1.0 (released Jul 12, 2021) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index f1a1ced1e..a46eb07d3 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.1+' +__version__ = '4.1.1' __released__ = '4.1.1' # used when Sphinx builds its own docs #: Version info for better programmatic use. @@ -38,7 +38,7 @@ __released__ = '4.1.1' # used when Sphinx builds its own docs #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (4, 1, 1, 'beta', 0) +version_info = (4, 1, 1, 'final', 0) package_dir = path.abspath(path.dirname(__file__)) |