Add changelog entries.

This commit is contained in:
Georg Brandl 2009-02-17 22:11:17 +01:00
parent ec9bf90ba7
commit f513c0e99b

13
CHANGES
View File

@ -106,6 +106,10 @@ New features added
* Extensions and API: * Extensions and API:
- Autodoc now has a reusable Python API, which can be used to
create custom types of objects to auto-document (e.g. Zope
interfaces). See also ``Sphinx.add_autodocumenter()``.
- Autodoc now handles documented attributes. - Autodoc now handles documented attributes.
- Autodoc now handles inner classes and their methods. - Autodoc now handles inner classes and their methods.
@ -113,11 +117,16 @@ New features added
- Autodoc can document classes as functions now if explicitly - Autodoc can document classes as functions now if explicitly
marked with `autofunction`. marked with `autofunction`.
- The function ``Sphinx.add_directive()`` now also supports
docutils 0.5-style directive classes. If they inherit from
``sphinx.util.compat.Directive``, they also work with
docutils 0.4.
- There is now a ``Sphinx.add_lexer()`` method to be able to use - There is now a ``Sphinx.add_lexer()`` method to be able to use
custom Pygments lexers easily. custom Pygments lexers easily.
- There is now ``Sphinx.add_generic_rol()`` to mirror the docutils' - There is now ``Sphinx.add_generic_role()`` to mirror the
own function. docutils' own function.
* Other changes: * Other changes: