bump the devel version to 211 (#22356)

This commit is contained in:
ringabout
2023-08-01 22:48:52 +08:00
committed by GitHub
parent a23e53b490
commit 1d2c27d2e6

View File

@@ -1,16 +1,16 @@
const
NimMajor* {.intdefine.}: int = 1
NimMajor* {.intdefine.}: int = 2
## is the major number of Nim's version. Example:
## ```
## when (NimMajor, NimMinor, NimPatch) >= (1, 3, 1): discard
## ```
# see also std/private/since
NimMinor* {.intdefine.}: int = 9
NimMinor* {.intdefine.}: int = 1
## is the minor number of Nim's version.
## Odd for devel, even for releases.
NimPatch* {.intdefine.}: int = 5
NimPatch* {.intdefine.}: int = 1
## is the patch number of Nim's version.
## Odd for devel, even for releases.