Release API 5.1

This commit is contained in:
Luck 2020-05-10 14:02:57 +01:00
parent 73d76d860e
commit 3bf2fab2e9
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B
2 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,5 @@
group = 'net.luckperms'
project.version = '5.0'
project.version = '5.1'
dependencies {
compileOnly 'org.checkerframework:checker-qual:2.5.5'
@ -68,9 +68,10 @@ if (project.hasProperty('sonatypeUsername') && project.hasProperty('sonatypePass
developers {
developer {
id 'lucko'
name 'Luck'
url 'https://lucko.me'
email 'git@lucko.me'
url 'https://github.com/lucko'
}
}

View File

@ -16,7 +16,7 @@ subprojects {
apply plugin: 'net.minecrell.licenser'
group = 'me.lucko.luckperms'
version = '5.0-SNAPSHOT'
version = '5.1-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
@ -45,7 +45,7 @@ subprojects {
}
project.ext.majorVersion = '5'
project.ext.minorVersion = '0'
project.ext.minorVersion = '1'
project.ext.patchVersion = determinePatchVersion()
project.ext.apiVersion = project.ext.majorVersion + '.' + project.ext.minorVersion
project.ext.fullVersion = project.ext.apiVersion + '.' + project.ext.patchVersion