VERSIONING.md

 1# Versioning
 2
 3This document describes the versioning policy for this module.
 4This policy is designed so the following goals can be achieved.
 5
 6**Users are provided a codebase of value that is stable and secure.**
 7
 8## Policy
 9
10* Versioning of this module will be idiomatic of a Go project using [Go modules](https://github.com/golang/go/wiki/Modules).
11  * [Semantic import versioning](https://github.com/golang/go/wiki/Modules#semantic-import-versioning) will be used.
12    * Versions will comply with [semver 2.0](https://semver.org/spec/v2.0.0.html).
13    * Any `v2` or higher version of this module will be included as a `/vN` at the end of the module path used in `go.mod` files and in the package import path.
14
15* GitHub releases will be made for all releases.