Versioning¶
The Esbonio language server uses version numbers that adhere to PEP 440 with a major.minor.micro scheme.
The
majorversion number is incremented whenever breaking changes in features that have been declared stable are introduced.The
minorversion number is incremented whenever a release contains new features or enhancements to existing features.The
microversion number is incremented whenever a relase contains only bug fixes.
As a general rule, a major release should be expected around each major release of Python and Sphinx so that Esbonio can keep pace with the rest of the ecosystem. (Just note that this is a small project, so there will likely be a lag!).
Stable Features
The following aspects of the language server are considered stable.
Incompatible changes to the list below should be accompanied with a major version bump.
The server’s command line interface and associated flags
Configuration options and their associated defaults
Unstable Features
By definition, “everything else” should be considered unstable. However, there are some aspects that deserve a special mention.
-
The internals of the language server are still relatively immature, you can expect breaking changes to any APIs as part of regular releases.
Supported Sphinx Versions¶
Each major version of Esbonio will support the current and previous two major versions of Sphinx. For example
Esbonio
1.xhas support for Sphinx versions8.x,7.xand6.x.Esbonio
2.xwill support Sphinx versions9.x,8.xand7.x.
Supported Python Versions¶
Each major version of Esbonio will support all actively supported Python versions, unless that version is not supported by any supported version of Sphinx.