Skip to content

Commit

Permalink
bump the devel version to 211 (#22356)
Browse files Browse the repository at this point in the history
  • Loading branch information
ringabout committed Aug 1, 2023
1 parent a23e53b commit 1d2c27d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/system/compilation.nim
Original file line number Diff line number Diff line change
@@ -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.

Expand Down

0 comments on commit 1d2c27d

Please sign in to comment.