-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0f86d0b
commit 0348999
Showing
2 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,3 +35,4 @@ In this section | |
--------------- | ||
- :doc:`/about/contributing` | ||
- :doc:`/about/license` | ||
- :doc:`/about/versions` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Versions | ||
======== | ||
|
||
Betty releases follow `semantic versioning <https://semver.org/>`_ (*SemVer*). That means that each version number | ||
follows the ``major.minor.patch`` format, e.g. ``2.7.19``, where | ||
|
||
- ``major`` indicates the API version, and is incremented when releasing API changes | ||
- ``minor`` is incremented when new functionality is added that does not change existing APIs | ||
- ``patch`` is incremented when bugs are fixed that do not change existing APIs | ||
|
||
Any change to ``minor`` or ``patch`` is backwards-compatible with previous releases with the same ``major``, e.g. if you | ||
built a project or package based on Betty ``1.0.0``, any ``1.y.z`` release will be compatible. |