From 1bcfe4f34b6196cfd206ea7fc710de6e3410aea3 Mon Sep 17 00:00:00 2001 From: Francisco Solis Date: Tue, 14 Jun 2022 13:09:50 -0400 Subject: [PATCH] Updated Depends and CHANGELOG.md --- CHANGELOG.md | 4 ++++ build.gradle | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1382710..bf66da13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v0.3.6 - Snapshot +* Updated Dependencies +* Spigot/Bungee 1.19 Support + ## v0.3.5 - Snapshot * Dependency Updates diff --git a/build.gradle b/build.gradle index 05e78111..5417a531 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ plugins { id 'org.jetbrains.dokka' version '1.6.21' } -def projectVersion = (System.getenv("VERSION") ?: '0.3.5-SNAPSHOT').replaceFirst("v", "").replace('/', '') +def projectVersion = (System.getenv("VERSION") ?: '0.3.6-SNAPSHOT').replaceFirst("v", "").replace('/', '') group 'xyz.theprogramsrc' version projectVersion @@ -26,8 +26,8 @@ repositories { } dependencies { - compileOnly 'org.spigotmc:spigot-api:1.18.1-R0.1-SNAPSHOT' - compileOnly 'net.md-5:bungeecord-api:1.18-R0.1-SNAPSHOT' + compileOnly 'org.spigotmc:spigot-api:1.19-R0.1-SNAPSHOT' + compileOnly 'net.md-5:bungeecord-api:1.19-R0.1-SNAPSHOT' implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.7.0' implementation 'org.jetbrains:annotations:23.0.0'