Release 5.2

This commit is contained in:
Luck 2020-10-14 12:18:50 +01:00
parent 2ea43d4b2e
commit 63878166db
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B
3 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
group = 'net.luckperms'
project.version = '5.1'
project.version = '5.2'
dependencies {
compileOnly 'org.checkerframework:checker-qual:2.5.5'

View File

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

View File

@ -52,7 +52,7 @@ public class ApiPlatform implements Platform, PluginMetadata {
@Override
public @NonNull String getApiVersion() {
return "5.0";
return "5.2";
}
@Override