diff --git a/CHANGELOG.md b/CHANGELOG.md index 311079d2..d2bc26d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v0.4.4 - Snapshot +* Updated some dependencies +* Removed debug logs + ## v0.4.3 - Snapshot * Updated kotlin 1.7.20 * Updated junit 5.9.1 diff --git a/build.gradle b/build.gradle index 9cb24fa8..0b30797b 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { id 'org.jetbrains.dokka' version '1.7.20' } -def projectVersion = (System.getenv("VERSION") ?: '0.4.3-SNAPSHOT').replaceFirst("v", "").replace('/', '') +def projectVersion = (System.getenv("VERSION") ?: '0.4.4-SNAPSHOT').replaceFirst("v", "").replace('/', '') group 'xyz.theprogramsrc' version projectVersion diff --git a/src/main/kotlin/xyz/theprogramsrc/simplecoreapi/global/utils/update/GitHubUpdateChecker.kt b/src/main/kotlin/xyz/theprogramsrc/simplecoreapi/global/utils/update/GitHubUpdateChecker.kt index 9960dad7..f46c0533 100644 --- a/src/main/kotlin/xyz/theprogramsrc/simplecoreapi/global/utils/update/GitHubUpdateChecker.kt +++ b/src/main/kotlin/xyz/theprogramsrc/simplecoreapi/global/utils/update/GitHubUpdateChecker.kt @@ -82,7 +82,6 @@ class GitHubUpdateChecker(val logger: ILogger, val repo: String, val currentVers }, System.currentTimeMillis()) requestedData[id] = cached } - println(cached.first.toString() + " - $id") return cached.first }