From 1fbc0c9a1611e343e1386daa01c6229ffeab7555 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 29 May 2016 17:20:19 +0900 Subject: [PATCH] Bump to 1.4.2 final --- CHANGES | 4 ++-- sphinx/__init__.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index b2cf74e64..aa81ec652 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,5 @@ -Release 1.4.2 (in development) -============================== +Release 1.4.2 (released May 29, 2016) +===================================== Features added -------------- diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 4e5e97a04..cf8cb67d0 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -15,13 +15,13 @@ import sys from os import path -__version__ = '1.4.1+' -__released__ = '1.4.1' # used when Sphinx builds its own docs +__version__ = '1.4.2' +__released__ = '1.4.2' # used when Sphinx builds its own docs # version info for better programmatic use # possible values for 3rd element: 'alpha', 'beta', 'rc', 'final' # 'final' has 0 as the last element -version_info = (1, 4, 2, 'beta', 1) +version_info = (1, 4, 2, 'final', 0) package_dir = path.abspath(path.dirname(__file__))