docs/asking/release-strategy.mdx
Understanding the Gogs release strategy helps you plan upgrades safely and avoid breaking changes.
Starting with version 0.12.0, Gogs follows semantic versioning. Version numbers use the format MAJOR.MINOR.PATCH:
| Version | Type | Description |
|---|---|---|
0.12.0 | Minor release | Introduces new features or breaking changes within 0.x |
0.12.1 | Patch release | First bug-fix release for the 0.12 series |
0.12 | Release series | Refers collectively to 0.12.0, 0.12.1, 0.12.2, etc. |
Each minor release has its own release branch with the prefix release/. For example, release/0.12 is the branch for version 0.12.0 and all of its patch releases (0.12.1, 0.12.2, and so on).
Gogs maintains backwards compatibility across one minor version at a time. Patch release numbers are disregarded when determining compatibility.
Supported upgrade paths:
| From | To | Supported |
|---|---|---|
0.12.0 | 0.13.0 | Yes |
0.12.1 | 0.13.4 | Yes |
0.12.4 | 0.14.0 | No -- skips a minor version |