Lua API reference versioning - VanaDev/Vana GitHub Wiki
Lua API reference versioning uses semantic versioning. Versions are expressed as three numbers such as 1.3.7. In this case, the major version would be 1, the minor version would be 3, and the patch version would be 7.
Patch versions are designed for bug fixes and things that do not modify the API.
Minor versions are designed for minor API changes that are generally backward-compatible.
Major versions are designed for major API changes that may or may not be backward-compatible.
As such, only the documentation for the latest minor/patch versions will be maintained.