Description
metadata
The top-level
metadata
object contains basic information about the backup itself:
...
version
: number - specifier that will be incremented upon major specification
changes that will require migration or introduce new keys. The current value is1
,
Suggest format use the latest “Semantic Versioning" scheme for versions from the very beginning, and if so maybe start with 0.0.1?
Please consider https://semver.org version format of X.Y.Z (Major.Minor.Patch) for metadata versions, or for application compatibity:
X = X indicate a change in the public API that introduce backward incompatibility.
Y = Y indicate an addition of some features or functions
Z = X indicate a fix (either fixing bug or build, either changing internal structure without impacting functionnality)
Summary
Given a version number MAJOR.MINOR.PATCH, increment the:
- MAJOR version when you make incompatible API changes,
- MINOR version when you add functionality in a backwards compatible manner, and
- PATCH version when you make backwards compatible bug fixes.
Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.