Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document compatibility between modules #3806

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions VERSIONING.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,12 @@ is designed so the following goals can be achieved.
stable release except for a stable release of the contrib repository.
* GitHub releases will be made for all releases.
* Go modules will be made available at Go package mirrors.
* Go modules are only guaranteed to be compatible with
other modules from the same release. They are not
guaranteed to be compatible with other modules from
previous releases. For example,
`go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.11.1` is not
compatible with `go.opentelemetry.io/otel v1.11.2`.

## Example Versioning Lifecycle

Expand Down