diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2023-08-01 22:48:52 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-01 16:48:52 +0200 |
commit | 1d2c27d2e67149240f97de48f721d95539c543e4 (patch) | |
tree | 452df007fb80b20338a60a035b6ecd893e0757d4 | |
parent | a23e53b4902d227353886d97ef50609709519dd9 (diff) | |
download | Nim-1d2c27d2e67149240f97de48f721d95539c543e4.tar.gz |
bump the devel version to 211 (#22356)
-rw-r--r-- | lib/system/compilation.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/system/compilation.nim b/lib/system/compilation.nim index ba47c1f69..c36bd9831 100644 --- a/lib/system/compilation.nim +++ b/lib/system/compilation.nim @@ -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. |