diff options
-rw-r--r-- | CHANGES | 7 | ||||
-rw-r--r-- | sphinx/__init__.py | 4 |
2 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,10 @@ +Release 1.4.6 (in development) +============================== + +Bugs fixed +---------- + + Release 1.4.6 (released Aug 20, 2016) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index ddb5f4954..83d9f534c 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -15,13 +15,13 @@ import sys from os import path -__version__ = '1.4.6' +__version__ = '1.4.6+' __released__ = '1.4.6' # 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, 6, 'final', 0) +version_info = (1, 4, 7, 'beta', 1) package_dir = path.abspath(path.dirname(__file__)) |