mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 13:47:35 +00:00
Libraries: Implement SemVer for version parsing and comparisons
Semantic Versioning (SemVer) is a versioning scheme for software that uses MAJOR.MINOR.PATCH format. MAJOR for significant, possibly breaking changes; MINOR for backward-compatible additions; PATCH for bug fixes. It aids communication, compatibility prediction, and dependency management. In apps dependent on specific library versions, SemVer guides parsing and validates compatibility, ensuring apps use appropriate dependencies. <valid semver> ::= <version core> | <version core> "-" <pre-release> | <version core> "+" <build> | <version core> "-" <pre-release> "+" <build>
This commit is contained in:
parent
14200de80b
commit
ee639fa1df
8 changed files with 770 additions and 0 deletions
5
Userland/Libraries/LibSemVer/CMakeLists.txt
Normal file
5
Userland/Libraries/LibSemVer/CMakeLists.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
set(SOURCES
|
||||
SemVer.cpp
|
||||
)
|
||||
|
||||
serenity_lib(LibSemVer semver)
|
Loading…
Add table
Add a link
Reference in a new issue