From 501b1bc71cccf652909396bfe517a3e6c9ca3b9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beatrice=20Dellac=C3=A0?= Date: Tue, 22 Nov 2022 14:55:47 +0100 Subject: [PATCH] Bump version Up to 0.2.8 because we are close to 0.3.0 since we made slash commands interfaces and a better command listener. However, we're still missing interface for command auto-completion and we should probably also register commands on discord's api from our interface instead of storing them again in a separate class. --- src/main/java/wtf/beatrice/hidekobot/Cache.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/wtf/beatrice/hidekobot/Cache.java b/src/main/java/wtf/beatrice/hidekobot/Cache.java index 077daba..065414e 100644 --- a/src/main/java/wtf/beatrice/hidekobot/Cache.java +++ b/src/main/java/wtf/beatrice/hidekobot/Cache.java @@ -31,7 +31,7 @@ public class Cache private final static String execPath = System.getProperty("user.dir"); - private static final String botVersion = "0.2.0-slash"; // we should probably find a way to make this consistent with Maven + private static final String botVersion = "0.2.8-slash"; // we should probably find a way to make this consistent with Maven private static final String botName = "HidekoBot"; private static SlashCommandListener slashCommandListener = null;