summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgeorg.brandl <devnull@localhost>2008-05-04 17:57:11 +0000
committergeorg.brandl <devnull@localhost>2008-05-04 17:57:11 +0000
commit2a32e4d213fde0079660155de4798f5ebb60a956 (patch)
tree2d9b9ce1f5d923e480107b57c3ea004b832434db
parent20a69a69bfa61f7894d81859e1e8a433a3051929 (diff)
downloadsphinx-2a32e4d213fde0079660155de4798f5ebb60a956.tar.gz
Rename version to 0.3.
-rw-r--r--doc/concepts.rst2
-rw-r--r--doc/config.rst6
-rw-r--r--doc/ext/autodoc.rst4
-rw-r--r--doc/intro.rst4
-rw-r--r--doc/markup/misc.rst2
-rw-r--r--sphinx/__init__.py2
6 files changed, 10 insertions, 10 deletions
diff --git a/doc/concepts.rst b/doc/concepts.rst
index a2cfaf83..007f5714 100644
--- a/doc/concepts.rst
+++ b/doc/concepts.rst
@@ -107,7 +107,7 @@ tables of contents. The ``toctree`` directive is the central element.
the TOC tree hierarchy. It can be used as the documentation's main page, or
as a "full table of contents" if you don't give a ``maxdepth`` option.
- .. versionchanged:: 0.2.1
+ .. versionchanged:: 0.3
Added "globbing" option.
diff --git a/doc/config.rst b/doc/config.rst
index 3f69c480..ab0e09d1 100644
--- a/doc/config.rst
+++ b/doc/config.rst
@@ -115,7 +115,7 @@ General configuration
A list of directory names, relative to the source directory, that are to be
excluded from the search for source files.
- .. versionadded:: 0.2.1
+ .. versionadded:: 0.3
.. confval:: pygments_style
@@ -123,7 +123,7 @@ General configuration
``'sphinx'``, which is a builtin style designed to match Sphinx' default
style.
- .. versionchanged:: 0.2.1
+ .. versionchanged:: 0.3
If the value is a fully-qualified name of a custom Pygments style class,
this is then used as custom style.
@@ -318,7 +318,7 @@ These options influence LaTeX output.
If true, the topmost sectioning unit is parts, else it is chapters. Default:
``False``.
- .. versionadded:: 0.2.1
+ .. versionadded:: 0.3
.. confval:: latex_appendices
diff --git a/doc/ext/autodoc.rst b/doc/ext/autodoc.rst
index 80c6942c..3f2b395e 100644
--- a/doc/ext/autodoc.rst
+++ b/doc/ext/autodoc.rst
@@ -63,7 +63,7 @@ directive.
Members without docstrings will be left out, unless you give the
``undoc-members`` flag option.
- .. versionadded:: 0.2.1
+ .. versionadded:: 0.3
For classes and exceptions, members inherited from base classes will be
left out, unless you give the ``inherited-members`` flag option.
@@ -123,4 +123,4 @@ There are also new config values that you can set:
``"init"``
Only the ``__init__`` method's docstring is inserted.
- .. versionadded:: 0.2.1
+ .. versionadded:: 0.3
diff --git a/doc/intro.rst b/doc/intro.rst
index 5e2757f0..3100ae97 100644
--- a/doc/intro.rst
+++ b/doc/intro.rst
@@ -32,7 +32,7 @@ directory`. Normally, this directory also contains the Sphinx configuration
file :file:`conf.py`, but that file can also live in another directory, the
:dfn:`configuration directory`.
-.. versionadded:: 0.2.1
+.. versionadded:: 0.3
Support for a different configuration directory.
Sphinx comes with a script called :program:`sphinx-quickstart` that sets up a
@@ -83,7 +83,7 @@ The :program:`sphinx-build` script has several more options:
configuration directory, so they will have to be present at this location
too.
- .. versionadded:: 0.2.1
+ .. versionadded:: 0.3
**-D** *setting=value*
Override a configuration value set in the :file:`conf.py` file. (The value
diff --git a/doc/markup/misc.rst b/doc/markup/misc.rst
index cbc72a3a..c5062137 100644
--- a/doc/markup/misc.rst
+++ b/doc/markup/misc.rst
@@ -77,7 +77,7 @@ exists:
By default, Sphinx uses a table layout with ``L`` for every column.
- .. versionadded:: 0.2.1
+ .. versionadded:: 0.3
.. warning::
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index 9236af92..db5bebe7 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -20,7 +20,7 @@ from sphinx.util import format_exception_cut_frames, save_traceback
from sphinx.util.console import darkred, nocolor
__revision__ = '$Revision$'
-__version__ = '0.2.1'
+__version__ = '0.3'
def usage(argv, msg=None):