[Python-checkins] r62710 - in doctools/trunk: doc/concepts.rst doc/config.rst doc/ext/autodoc.rst doc/intro.rst doc/markup/misc.rst sphinx/__init__.py

georg.brandl python-checkins at python.org
Sun May 4 19:57:12 CEST 2008


Author: georg.brandl
Date: Sun May  4 19:57:11 2008
New Revision: 62710

Log:
Rename version to 0.3.


Modified:
   doctools/trunk/doc/concepts.rst
   doctools/trunk/doc/config.rst
   doctools/trunk/doc/ext/autodoc.rst
   doctools/trunk/doc/intro.rst
   doctools/trunk/doc/markup/misc.rst
   doctools/trunk/sphinx/__init__.py

Modified: doctools/trunk/doc/concepts.rst
==============================================================================
--- doctools/trunk/doc/concepts.rst	(original)
+++ doctools/trunk/doc/concepts.rst	Sun May  4 19:57:11 2008
@@ -107,7 +107,7 @@
    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.
 
 

Modified: doctools/trunk/doc/config.rst
==============================================================================
--- doctools/trunk/doc/config.rst	(original)
+++ doctools/trunk/doc/config.rst	Sun May  4 19:57:11 2008
@@ -115,7 +115,7 @@
    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 @@
    ``'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 @@
    If true, the topmost sectioning unit is parts, else it is chapters.  Default:
    ``False``.
 
-   .. versionadded:: 0.2.1
+   .. versionadded:: 0.3
 
 .. confval:: latex_appendices
 

Modified: doctools/trunk/doc/ext/autodoc.rst
==============================================================================
--- doctools/trunk/doc/ext/autodoc.rst	(original)
+++ doctools/trunk/doc/ext/autodoc.rst	Sun May  4 19:57:11 2008
@@ -63,7 +63,7 @@
    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 @@
    ``"init"``
       Only the ``__init__`` method's docstring is inserted.
 
-   .. versionadded:: 0.2.1
+   .. versionadded:: 0.3

Modified: doctools/trunk/doc/intro.rst
==============================================================================
--- doctools/trunk/doc/intro.rst	(original)
+++ doctools/trunk/doc/intro.rst	Sun May  4 19:57:11 2008
@@ -32,7 +32,7 @@
 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 @@
    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

Modified: doctools/trunk/doc/markup/misc.rst
==============================================================================
--- doctools/trunk/doc/markup/misc.rst	(original)
+++ doctools/trunk/doc/markup/misc.rst	Sun May  4 19:57:11 2008
@@ -77,7 +77,7 @@
 
    By default, Sphinx uses a table layout with ``L`` for every column.
 
-   .. versionadded:: 0.2.1
+   .. versionadded:: 0.3
 
 .. warning::
 

Modified: doctools/trunk/sphinx/__init__.py
==============================================================================
--- doctools/trunk/sphinx/__init__.py	(original)
+++ doctools/trunk/sphinx/__init__.py	Sun May  4 19:57:11 2008
@@ -20,7 +20,7 @@
 from sphinx.util.console import darkred, nocolor
 
 __revision__ = '$Revision$'
-__version__ = '0.2.1'
+__version__ = '0.3'
 
 
 def usage(argv, msg=None):


More information about the Python-checkins mailing list