Skip to content

Commit

Permalink
v2.2.3:
Browse files Browse the repository at this point in the history
- Fixed a placeholder bug
  • Loading branch information
randombyte-developer committed Jun 27, 2018
1 parent e7ba0ae commit 359e231
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ buildscript {
}

plugins {
id "org.jetbrains.kotlin.jvm" version "1.2.41"
id "org.jetbrains.kotlin.kapt" version "1.2.41"
id "com.github.johnrengelman.shadow" version "1.2.4"
id "org.jetbrains.kotlin.jvm" version "1.2.50"
id "org.jetbrains.kotlin.kapt" version "1.2.50"
id "com.github.johnrengelman.shadow" version "2.0.4"
}

def isJitpack = System.getenv("JITPACK") != null
Expand All @@ -22,7 +22,7 @@ if (!isJitpack) {
}

group "de.randombyte"
version "2.2.2"
version "2.2.3"

repositories {
jcenter()
Expand All @@ -37,9 +37,9 @@ configurations {
}

dependencies {
shadow "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.41"
shadow "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.50"
kapt "org.spongepowered:spongeapi:7.0.0"
shadow("com.github.randombyte-developer.kosp:kosp:v2.2.2") { transitive = false }
shadow("com.github.randombyte-developer.kosp:kosp:v2.2.3") { transitive = false }
shadow "org.bstats:bstats-sponge:1.2"
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/de/randombyte/commandutils/CommandUtils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class CommandUtils @Inject constructor(
companion object {
const val ID = "command-utils"
const val NAME = "CommandUtils"
const val VERSION = "2.2.2"
const val VERSION = "2.2.3"
const val AUTHOR = "RandomByte"

const val PLACEHOLDER_API_ID = "placeholderapi"
Expand Down

0 comments on commit 359e231

Please sign in to comment.