API stability is important, just as adequate semantic versioning, and informative changelogs.
Anything that can be imported directly from any of the sub-packages in
datalad_core
is considered to be part of the public API. Changes to this API
determine the versioning, and development is done with the aim to keep this API
as stable as possible. This includes signatures and return value behavior.
As an example: from datalad_core.abc import xyz
imports a part of the public
API, but from datalad_core.abc.def import xyz
does not.
Developers can obviously use parts of the non-public API. However, this should only be done with the understanding that these components may change from one release to another, with no guarantee of transition periods, deprecation warnings, etc.
Developers are advised to never reuse any components with names starting with
_
(underscore). Their use should be limited to their individual subpackage.
Contributions to this library are welcome! Please see the contributing guidelines for details on scope and style of potential contributions.