Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2020-02-18 19:24:48 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-02-18 19:24:48 +0300
commit47a9845af25866c2b165a66aff9bb57de784027e (patch)
treeb1c865274bcb3bc59ebd8f7583cd970452f11bac
parentc203aa87b84727daaf4753aaefd43cfc766308ed (diff)
Bump to 2.4.2 finalv2.4.2
-rw-r--r--CHANGES19
-rw-r--r--sphinx/__init__.py4
2 files changed, 4 insertions, 19 deletions
diff --git a/CHANGES b/CHANGES
index 1abf17ff1..f65bc39b7 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,17 +1,5 @@
-Release 2.4.2 (in development)
-==============================
-
-Dependencies
-------------
-
-Incompatible changes
---------------------
-
-Deprecated
-----------
-
-Features added
---------------
+Release 2.4.2 (released Feb 19, 2020)
+=====================================
Bugs fixed
----------
@@ -26,9 +14,6 @@ Bugs fixed
* #7170: text: Remove debug print
* #7137: viewcode: Avoid to crash when non-python code given
-Testing
---------
-
Release 2.4.1 (released Feb 11, 2020)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index 9492a3c51..7837c31e7 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__ = '2.4.2+'
+__version__ = '2.4.2'
__released__ = '2.4.2' # used when Sphinx builds its own docs
#: Version info for better programmatic use.
@@ -43,7 +43,7 @@ __released__ = '2.4.2' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
-version_info = (2, 4, 2, 'beta', 0)
+version_info = (2, 4, 2, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))