-
Notifications
You must be signed in to change notification settings - Fork 1
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
a52981e
commit 5928095
Showing
5 changed files
with
63 additions
and
29 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
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
This file was deleted.
Oops, something went wrong.
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
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,15 @@ | ||
--- | ||
sidebar_position: 6 | ||
--- | ||
|
||
# Versioning | ||
|
||
AnyShake Observer follows the [Semantic Versioning (SemVer)](https://semver.org) principles. | ||
|
||
That means that with a version number x.y.z: | ||
|
||
- When releasing critical bug fixes, we make a patch release by changing the z number (ex: 2.1.2 to 2.1.3). | ||
- When releasing new features or non-critical fixes, we make a minor release by changing the y number (ex: 2.1.2 to 2.2.0). | ||
- When releasing breaking changes, we make a major release by changing the x number (ex: 2.1.2 to 3.0.0). | ||
|
||
Major releases can also contain new features, and any release can include bug fixes, minor releases are the most common type of release. |