Authors: | Günter Milde
Adam Turner |
---|---|
Discussions-To: | https://sourceforge.net/p/docutils/feature-requests/89/ |
Status: | Draft |
Type: | Process |
Created: | 2025-04-22 |
Docutils-Version: | |
1.0 |
Abstract
This document suggests a definition of the public APIs provided by the Docutils project and the backwards compatibility policy.
Docutils has a large user base and is used in production at several places (Python documentation, Linux kernel documentation, CMake documentation, readthedocs, ...). OTOH, Docutils has a version number below 1.0 (widely seen as an indicator of "beta" status of a project).
The current Docutils Project Policies section on version identifcation concentrates on the formal definition of the version specifier but leaves open what consists a "major change in the design or API".
The current backwards compatibility policy is a stub referencing PEP 387.
Clearly defining how we will balance evolution with stability is important to both users and project developers.
People affected by changes in Docutils include:
i.e. authors and maintainers of
A person may belong to more than one of these catgories.
Docutils public APIs are:
Python objects, stylesheets and templates can explicitly "opt-out" of the public API with a docstring noting that the object is provisional or internal.
All undocumented objects should be assumed to be internal. [2]
See also the API Reference Material for Client-Developers.
[1] | Cf. PEP 387: Backwards Compatibility Rules |
[2] | Cf. PEP 008: Public and Internal Interfaces |
Beginning with version 1.0, Docutils will follow the rules of Semantic Versioning. All incompatible changes to the public APIs require increasing the major part of the version specifier. Backwards compatible changes can be done in minor releases.
If required, critical bug fixes may change the public API without advance warning.
Move the API specification and the backwards compatibility declaration to the Docutils Project Policies.
Complete the API documentation and keep it up to date.
Generate "docutils" package API documentation from the docstrings:
Put the following text at a suitable place in the documentation:
To find out if an object from the "docutils" package is safe to use, look up its docstring and the docstring of its parent(s) [3].
If there is no documentation or the documentation says "provisional" or "internal", the name, behaviour, and existence of the object is not guaranteed to be stable.
Code relying on non-public objects should be made robust using public alternatives. If there is a no such alternative or the required change would be a problem, contact the Docutils developers or file a feature request.
[3] Attribute docstrings are not shown by pydoc. To find out whether attributes have a docstring, check the source.
Differentiate between "core API" and "extended API"?
Cf. the Docutils Project Policies
When Docutils reaches version 1.0, the major APIs will be considered frozen.
The major number [...] may be incremented later if there is a major change in the design or API.
Formalise the wording for docstrings for public/private/provisional (ideally this would be a single regex pattern)?
Declare only objects included in the __all__ attribute of their parent objects as public rsp. explicitely list all public objects in __all__ attribute of their parents?
This would hide private objects from pydoc help on the parent objects.
Define a minimum deprecation time similar to Docbook? E.g.
- A "major" release may contain backward-incompatible changes if:
- the change was announced in the release notes for the previous version (major or minor) and
- the change was announced in a release that occurred at least six months previously.
By these rules, Docutils developers can announce, in release 5.1, for example, its plans to make a backward-incompatible change in release 6.0. Then, in 6.0, if it’s been at least six months since 5.1 was released, they can make that change.
This document is placed in the public domain or under the CC0-1.0-Universal license, whichever is more permissive.