diff options
| author | Georg Brandl <georg@python.org> | 2011-10-09 23:25:40 +0200 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2011-10-09 23:25:40 +0200 |
| commit | 032a1ddb4999126bc0e208bb07842aaac901fe43 (patch) | |
| tree | 7ef053b66fdf2dc8af0cb6d4c71a2b3eaf62e1ba | |
| parent | 252557a8b56e209dd83d88fb8c9fed11528e26ff (diff) | |
| download | sphinx-1.1.tar.gz | |
Pre-release updates.1.1
| -rw-r--r-- | CHANGES | 4 | ||||
| -rw-r--r-- | setup.py | 1 | ||||
| -rw-r--r-- | sphinx/__init__.py | 4 |
3 files changed, 5 insertions, 4 deletions
@@ -1,5 +1,5 @@ -Release 1.1 (in development) -============================ +Release 1.1 (Oct 9, 2011) +========================= Incompatible changes -------------------- @@ -182,6 +182,7 @@ setup( 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 3', 'Topic :: Documentation', 'Topic :: Text Processing', 'Topic :: Utilities', diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 468b3406..f1ddb753 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -15,8 +15,8 @@ import sys from os import path -__version__ = '1.1pre' -__released__ = '1.1 (hg)' # used when Sphinx builds its own docs +__version__ = '1.1' +__released__ = '1.1' # used when Sphinx builds its own docs package_dir = path.abspath(path.dirname(__file__)) |
