From d0088b7cfd5372c31ddb0944e4f96b90bb975be9 Mon Sep 17 00:00:00 2001 From: DxsSucuk Date: Mon, 11 Jul 2022 23:26:32 +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 de1109b1e..601ef5f8a 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ de.presti Ree6 - 1.7.16 + 1.7.17 jar Ree6 Ree6 is an open-Source Discord Bot. diff --git a/src/main/java/de/presti/ree6/main/Main.java b/src/main/java/de/presti/ree6/main/Main.java index 1d4412316..2e245e30f 100644 --- a/src/main/java/de/presti/ree6/main/Main.java +++ b/src/main/java/de/presti/ree6/main/Main.java @@ -99,7 +99,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.7.16"); + raygunClient.setVersion("1.7.17"); }); // Create a new connection between the Application and the SQL-Server. @@ -133,7 +133,7 @@ public static void main(String[] args) { // Create a new Instance of the Bot, as well as add the Events. try { - BotWorker.createBot(BotVersion.PUBLIC, "1.7.16"); + BotWorker.createBot(BotVersion.PUBLIC, "1.7.17"); instance.musicWorker = new MusicWorker(); instance.addEvents(); } catch (Exception ex) {