From 9ccbdf4bba7ea764e1cf9b74bb40c68d40be5527 Mon Sep 17 00:00:00 2001 From: Presti Date: Fri, 12 Aug 2022 08:32:14 +0200 Subject: [PATCH] * Version bump. --- pom.xml | 2 +- src/main/java/de/presti/ree6/main/Main.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index f4e83ede1..84d3ed0a8 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ de.presti Ree6 - 1.9.3 + 1.9.4 jar diff --git a/src/main/java/de/presti/ree6/main/Main.java b/src/main/java/de/presti/ree6/main/Main.java index c846e5d35..588aea367 100644 --- a/src/main/java/de/presti/ree6/main/Main.java +++ b/src/main/java/de/presti/ree6/main/Main.java @@ -130,7 +130,7 @@ public static void main(String[] args) { // Create a RayGun Client to send Exception to an external Service for Bug fixing. Thread.setDefaultUncaughtExceptionHandler((t, e) -> { RaygunClient raygunClient = new RaygunClient(instance.config.getConfiguration().getString("raygun.apitoken")); - raygunClient.setVersion("1.9.3"); + raygunClient.setVersion("1.9.4"); }); // Create a new connection between the Application and the SQL-Server. @@ -174,7 +174,7 @@ public static void main(String[] args) { // Create a new Instance of the Bot, as well as add the Events. try { - BotWorker.createBot(BotVersion.RELEASE, "1.9.3"); + BotWorker.createBot(BotVersion.RELEASE, "1.9.4"); instance.musicWorker = new MusicWorker(); instance.addEvents(); } catch (Exception ex) {