diff options
author | shimizukawa <shimizukawa@gmail.com> | 2016-02-29 22:47:46 +0900 |
---|---|---|
committer | shimizukawa <shimizukawa@gmail.com> | 2016-02-29 22:47:46 +0900 |
commit | 9ec5305bba279787911d191fa8168ccab432fba7 (patch) | |
tree | 6f114a0a5a1d5c2bc7b14e053e7e00d0663adbf1 | |
parent | 34422ebcad96c6e980a562397fb9c56df62cd8c1 (diff) | |
download | sphinx-git-9ec5305bba279787911d191fa8168ccab432fba7.tar.gz |
-rw-r--r-- | CHANGES | 4 | ||||
-rw-r--r-- | sphinx/__init__.py | 6 |
2 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ -Release 1.3.6 (in development) -============================== +Release 1.3.6 (released Feb 29, 2016) +===================================== Features added -------------- diff --git a/sphinx/__init__.py b/sphinx/__init__.py index a44de7946..8b64ecfa0 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -15,13 +15,13 @@ import sys from os import path -__version__ = '1.3.5+' -__released__ = '1.3.5+' # used when Sphinx builds its own docs +__version__ = '1.3.6' +__released__ = '1.3.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, 3, 6, 'beta', 1) +version_info = (1, 3, 6, 'final', 0) package_dir = path.abspath(path.dirname(__file__)) |