From 5ed30072e35e1dc457b1ac3189b4b2accaf9a8f3 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 4 May 2008 17:57:11 +0000 Subject: [PATCH] Rename version to 0.3. --- doc/concepts.rst | 2 +- doc/config.rst | 6 +++--- doc/ext/autodoc.rst | 4 ++-- doc/intro.rst | 4 ++-- doc/markup/misc.rst | 2 +- sphinx/__init__.py | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/doc/concepts.rst b/doc/concepts.rst index a2cfaf835..007f57143 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 3f69c4801..ab0e09d1a 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 80c6942cd..3f2b395e0 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 5e2757f08..3100ae97a 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 cbc72a3ac..c50621372 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 9236af924..db5bebe77 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):