diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-11-12 23:21:14 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-11-12 23:21:14 +0900 |
commit | c09795c19421a01aa03e465aaf26834941d5b245 (patch) | |
tree | f8baaf4596635a661d3d39a644cf4688ff8ff117 | |
parent | 5cabdecb9e47c50fd7de32f02acef1ddfde3b1cf (diff) | |
download | sphinx-git-c09795c19421a01aa03e465aaf26834941d5b245.tar.gz |
Bump to 3.3.1 finalv3.3.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.3.1 (in development) -============================== - -Dependencies ------------- - -Incompatible changes --------------------- - -Deprecated ----------- - -Features added --------------- +Release 3.3.1 (released Nov 12, 2020) +===================================== Bugs fixed ---------- @@ -23,9 +11,6 @@ Bugs fixed * #8364: C, properly initialize attributes in empty symbols. * #8399: i18n: Put system locale path after the paths specified by configuration -Testing --------- - Release 3.3.0 (released Nov 02, 2020) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 4f0f28f47..502fcab8c 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.3.1+' +__version__ = '3.3.1' __released__ = '3.3.1' # used when Sphinx builds its own docs #: Version info for better programmatic use. @@ -43,7 +43,7 @@ __released__ = '3.3.1' # used when Sphinx builds its own docs #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (3, 3, 1, 'beta', 0) +version_info = (3, 3, 1, 'final', 0) package_dir = path.abspath(path.dirname(__file__)) |