release: 3.0.1
This commit is contained in:
parent
c03b388d6f
commit
7a499ee09b
1 changed files with 5 additions and 4 deletions
|
|
@ -7,11 +7,12 @@ Authors: Mac Malone
|
|||
namespace Lake
|
||||
|
||||
def version.major := 3
|
||||
def version.minor := 1
|
||||
def version.patch := 0
|
||||
def version.minor := 0
|
||||
def version.patch := 1
|
||||
|
||||
def version.isRelease := false
|
||||
def version.specialDesc := "pre"
|
||||
def version.isPrerelease := false
|
||||
def version.isRelease := !isPrerelease
|
||||
def version.specialDesc := if isPrerelease then "pre" else ""
|
||||
|
||||
def versionStringCore :=
|
||||
s!"{version.major}.{version.minor}.{version.patch}"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue