summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2020-11-12 23:21:14 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-11-12 23:21:14 +0900
commitc09795c19421a01aa03e465aaf26834941d5b245 (patch)
treef8baaf4596635a661d3d39a644cf4688ff8ff117
parent5cabdecb9e47c50fd7de32f02acef1ddfde3b1cf (diff)
downloadsphinx-git-c09795c19421a01aa03e465aaf26834941d5b245.tar.gz
Bump to 3.3.1 finalv3.3.1
-rw-r--r--CHANGES19
-rw-r--r--sphinx/__init__.py4
2 files changed, 4 insertions, 19 deletions
diff --git a/CHANGES b/CHANGES
index eb041082f..927e87b85 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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__))