Update README.md and table generator for linux-musl-arm

This commit is contained in:
Jan Vorlicek 2020-12-15 12:57:44 +01:00
parent 3f100132de
commit 72b2e440ab
5 changed files with 20 additions and 6 deletions

View file

@ -18,6 +18,7 @@ let branchNameShorten (branch: Branch): string =
type BranchMajorMinorVersion =
{ Major: int
Minor: int
Patch: int
Release: string}
type BranchMajorMinorVersionOrMaster =
@ -38,5 +39,6 @@ let getMajorMinor (branch: Branch): BranchMajorMinorVersionOrMaster =
MajorMinor
{ Major = version.Major
Minor = version.Minor
Patch = version.Patch
Release = version.Release}
| _ -> NoVersion