-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
📝 Fix Documentation Build on ReadTheDocs And Add Documentation About …
…Versioning (#673)
- Loading branch information
1 parent
ddcba8f
commit 2ace752
Showing
4 changed files
with
42 additions
and
4 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 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,30 @@ | ||
=============== | ||
BO4E Versioning | ||
=============== | ||
|
||
The BO4E data model uses a unique versioning system to track changes and updates. | ||
This system is easy to understand once you're familiar with its format and rationale. | ||
|
||
Let's break it down: | ||
|
||
Version Format: `YYYYMM.functional.technical` | ||
|
||
- YYYYMM: Represents the year (YYYY) and month (MM) when the version was released. For example, 202312 would mean December 2023. | ||
- functional: A number that changes when there are significant updates or new features. | ||
- technical: This number changes for minor updates, like bug fixes or spelling corrections. | ||
|
||
How Does it Work? | ||
================= | ||
|
||
1. **Base Structure**: Think of the version number as a date followed by two additional numbers, like 202312.1.2. Here, 202312 tells you the release date, 1 is the functional number, and 2 is the technical number. | ||
2. **Technical Changes**: If we fix a typo or a small bug, we only change the technical number. So, after a minor fix, the version might change from 202312.1.2 to 202312.1.3. | ||
3. **Functional Changes**: For bigger changes, like adding a new business object, we update the functional number and reset the technical number to zero. For instance, if we add a significant feature to the 202312.1.2 version, it becomes 202312.2.0. | ||
|
||
Yearly Reset: With the start of a new year, we reset both the functional and technical numbers. | ||
So, if we're moving from December 2023 (202312.2.0) to January 2024, the new version would be 202401.0.0. | ||
|
||
Why This System? | ||
================ | ||
|
||
This versioning system, inspired by semantic versioning, offers a clear and systematic way to track changes. | ||
It ensures that users can easily identify when a significant update has occurred and when minor tweaks have been made. |
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