Skip to content

Commit

Permalink
Fixed wrong config version.
Browse files Browse the repository at this point in the history
  • Loading branch information
DxsSucuk committed Jan 30, 2024
1 parent 7b31beb commit 0e3881a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>de.presti</groupId>
<artifactId>Ree6</artifactId>
<version>3.1.9</version>
<version>3.1.10</version>
<packaging>jar</packaging>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/de/presti/ree6/bot/BotWorker.java
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ public static BotVersion getVersion() {
public static String getBuild() {
if (build == null) {
build = Objects.requireNonNullElse(Main.class.getPackage().getImplementationVersion(),
Objects.requireNonNullElse(gitVersion, "3.1.9"));
Objects.requireNonNullElse(gitVersion, "3.1.10"));
}
return build;
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/de/presti/ree6/utils/data/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class Config {
/**
* The config version.
*/
private final String version = "3.1.6";
private final String version = "3.1.10";

/**
* Initialize the Configuration.
Expand Down

0 comments on commit 0e3881a

Please sign in to comment.