From 464dc993762a7eadb36462e6d5e265aefc1da6e3 Mon Sep 17 00:00:00 2001 From: ringabout <43030857+ringabout@users.noreply.github.com> Date: Tue, 3 Dec 2024 15:41:04 +0800 Subject: [PATCH] fixes devel version number (#24494) As said in the documentation, `NimMinor` is supposed to be odd and should be greater than the stable channel --- lib/system/compilation.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/system/compilation.nim b/lib/system/compilation.nim index cdb976ed53..a5ea44a1ff 100644 --- a/lib/system/compilation.nim +++ b/lib/system/compilation.nim @@ -6,7 +6,7 @@ const ## ``` # see also std/private/since - NimMinor* {.intdefine.}: int = 2 + NimMinor* {.intdefine.}: int = 3 ## is the minor number of Nim's version. ## Odd for devel, even for releases.