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>2016-11-23 17:26:12 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2016-11-23 17:26:12 +0300
commitfa302485f3d6b574273030df3e903db135324e72 (patch)
tree4523e1aa0b0bd19e6cfd265f1c0b78c175020065
parente4adcdff622c9660d9667d9b96baf5fd2902e9fe (diff)
Bump to 1.4.9 finalv1.4.91.4.91.4
-rw-r--r--CHANGES4
-rw-r--r--sphinx/__init__.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 582f7a301..d65497137 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,5 @@
-Release 1.4.9 (in development)
-==============================
+Release 1.4.9 (released Nov 23, 2016)
+=====================================
Bugs fixed
----------
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index 60b42d70e..b05ec91ed 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -15,13 +15,13 @@
import sys
from os import path
-__version__ = '1.4.9+'
+__version__ = '1.4.9'
__released__ = '1.4.9' # 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, 9, 'beta', 1)
+version_info = (1, 4, 9, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))