Skip to content

Commit a488067

Browse files
committed
bump NimVersion to 2.0.0
1 parent 35ff70f commit a488067

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/system/compilation.nim

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
const
2-
NimMajor* {.intdefine.}: int = 1
2+
NimMajor* {.intdefine.}: int = 2
33
## is the major number of Nim's version. Example:
44
## ```
55
## when (NimMajor, NimMinor, NimPatch) >= (1, 3, 1): discard
66
## ```
77
# see also std/private/since
88

9-
NimMinor* {.intdefine.}: int = 9
9+
NimMinor* {.intdefine.}: int = 0
1010
## is the minor number of Nim's version.
1111
## Odd for devel, even for releases.
1212

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

0 commit comments

Comments
 (0)