summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorringabout <43030857+ringabout@users.noreply.github.com>2023-08-01 22:48:52 +0800
committerGitHub <noreply@github.com>2023-08-01 16:48:52 +0200
commit1d2c27d2e67149240f97de48f721d95539c543e4 (patch)
tree452df007fb80b20338a60a035b6ecd893e0757d4
parenta23e53b4902d227353886d97ef50609709519dd9 (diff)
downloadNim-1d2c27d2e67149240f97de48f721d95539c543e4.tar.gz
bump the devel version to 211 (#22356)
-rw-r--r--lib/system/compilation.nim6
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.