Skip to content

Commit

Permalink
Document Betty's versioning (#2223)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartfeenstra authored Nov 25, 2024
1 parent 0f86d0b commit 0348999
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions documentation/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ In this section
---------------
- :doc:`/about/contributing`
- :doc:`/about/license`
- :doc:`/about/versions`
12 changes: 12 additions & 0 deletions documentation/about/versions.rst
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.

0 comments on commit 0348999

Please sign in to comment.