1
0
mirror of https://github.com/lucko/LuckPerms.git synced 2025-08-21 21:55:18 +02:00

Release 5.2

This commit is contained in:
Luck
2020-10-14 12:18:50 +01:00
parent 2ea43d4b2e
commit 63878166db
3 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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