From 6a9fca835cd18519a9ef17b7b1296c3fe9d926ac Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 2 Mar 2014 08:41:38 +0100 Subject: [PATCH] Bump to 1.2.2. --- CHANGES | 4 ++-- sphinx/__init__.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index cbeb2a155b..36fe912abd 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,5 @@ -Release 1.2.2 (in development) -============================== +Release 1.2.2 (released Mar 2, 2014) +==================================== Bugs fixed ---------- diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 8d097c0b48..c954e8a4bb 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -15,12 +15,12 @@ import sys from os import path -__version__ = '1.2.1+' -__released__ = '1.2.1' # used when Sphinx builds its own docs +__version__ = '1.2.2' +__released__ = '1.2.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, 2, 1, 'final', 0) +version_info = (1, 2, 2, 'final', 0) package_dir = path.abspath(path.dirname(__file__))