diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-08-20 18:05:14 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-08-20 18:05:14 +0900 |
commit | 938dad8400f841c7859b96e23ce72e687ae50467 (patch) | |
tree | e586dcf103bea4d8c07e5a3381b71cf5b2b27e87 | |
parent | 4168b0bd20da33768a0028f6693ace07fd16f908 (diff) | |
download | sphinx-git-938dad8400f841c7859b96e23ce72e687ae50467.tar.gz |
Bump version
-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__)) |