-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move BaseSemanticVersion to top level schema (#374)
- Loading branch information
Showing
2 changed files
with
19 additions
and
16 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
dao-api/src/main/pegasus/com/linkedin/metadata/aspect/BaseSemanticVersion.pdl
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,18 @@ | ||
namespace com.linkedin.metadata.aspect | ||
|
||
record BaseSemanticVersion { | ||
/** | ||
* The major version of this version. This is the x in x.y.z. | ||
*/ | ||
major: int | ||
|
||
/** | ||
* The minor version of this version. This is the y in x.y.z | ||
*/ | ||
minor: int | ||
|
||
/** | ||
* The patch version of this version. This is the z in x.y.z | ||
*/ | ||
patch: int | ||
} |
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