Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
760 B
Markdown
16 lines
760 B
Markdown
# Versioning
|
|
|
|
This document describes the versioning policy for this module.
|
|
This policy is designed so the following goals can be achieved.
|
|
|
|
**Users are provided a codebase of value that is stable and secure.**
|
|
|
|
## Policy
|
|
|
|
* Versioning of this module will be idiomatic of a Go project using [Go modules](https://github.com/golang/go/wiki/Modules).
|
|
* [Semantic import versioning](https://github.com/golang/go/wiki/Modules#semantic-import-versioning) will be used.
|
|
* Versions will comply with [semver 2.0](https://semver.org/spec/v2.0.0.html).
|
|
* 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.
|
|
|
|
* GitHub releases will be made for all releases.
|