Skip to content

Commit

Permalink
bump NimVersion to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
narimiran committed Jul 31, 2023
1 parent 35ff70f commit a488067
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 = 0
## is the minor number of Nim's version.
## Odd for devel, even for releases.

NimPatch* {.intdefine.}: int = 5
NimPatch* {.intdefine.}: int = 0
## is the patch number of Nim's version.
## Odd for devel, even for releases.

Expand Down

0 comments on commit a488067

Please sign in to comment.