Updated config.nim

This commit is contained in:
Mattia Giambirtone 2022-08-19 08:53:49 +02:00
parent 058b021493
commit 66b409bbd4
1 changed files with 2 additions and 2 deletions

View File

@ -31,10 +31,10 @@ when HeapGrowFactor <= 1:
{.fatal: "Heap growth factor must be > 1".}
const PeonVersion* = (major: 0, minor: 1, patch: 0)
const PeonRelease* = "alpha"
const PeonCommitHash* = "b273cd744883458a4a6354a0cc5f4f5d0f560c31"
const PeonCommitHash* = "058b021493577a45ff6418d8073008be401b5910"
when len(PeonCommitHash) != 40:
{.fatal: "The git commit hash must be exactly 40 characters long".}
const PeonBranch* = "unboxed-types"
const PeonBranch* = "master"
when len(PeonBranch) > 255:
{.fatal: "The git branch name's length must be less than or equal to 255 characters".}
const PeonVersionString* = &"Peon {PeonVersion.major}.{PeonVersion.minor}.{PeonVersion.patch} {PeonRelease} ({PeonBranch}, {CompileDate}, {CompileTime}, {PeonCommitHash[0..8]}) [Nim {NimVersion}] on {hostOS} ({hostCPU})"