diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2021-02-16 23:35:32 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2021-02-16 23:35:32 +0900 |
commit | baed519b90ca0ff77748b0445dc6aec598197c80 (patch) | |
tree | aa45b326ee4f4fafc110757c1f087c2ec420d7bb | |
parent | e2bef2d1d24b62f445f823d76106c38cd67e63ae (diff) | |
download | sphinx-git-baed519b90ca0ff77748b0445dc6aec598197c80.tar.gz |
Bump to 3.5.1 finalv3.5.1
-rw-r--r-- | CHANGES | 19 | ||||
-rw-r--r-- | sphinx/__init__.py | 4 |
2 files changed, 4 insertions, 19 deletions
@@ -1,17 +1,5 @@ -Release 3.5.1 (in development) -============================== - -Dependencies ------------- - -Incompatible changes --------------------- - -Deprecated ----------- - -Features added --------------- +Release 3.5.1 (released Feb 16, 2021) +===================================== Bugs fixed ---------- @@ -24,9 +12,6 @@ Bugs fixed * #8880: viewcode: ExtensionError is raised on incremental build after unparsable python module found -Testing --------- - Release 3.5.0 (released Feb 14, 2021) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 61ea947d8..66e5e68fb 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -32,7 +32,7 @@ if 'PYTHONWARNINGS' not in os.environ: warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '3.5.1+' +__version__ = '3.5.1' __released__ = '3.5.1' # used when Sphinx builds its own docs #: Version info for better programmatic use. @@ -43,7 +43,7 @@ __released__ = '3.5.1' # used when Sphinx builds its own docs #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (3, 5, 1, 'beta', 0) +version_info = (3, 5, 1, 'final', 0) package_dir = path.abspath(path.dirname(__file__)) |