Skip to content

Commit

Permalink
Actual fix with bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
DxsSucuk committed Jan 30, 2024
1 parent eab7e69 commit f0ced89
Show file tree
Hide file tree
Showing 2 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.7</version>
<version>3.1.8</version>
<packaging>jar</packaging>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/de/presti/ree6/bot/BotWorker.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ private static void loadGitProperties() {
gitCommitFull = prop.getProperty("git.commit.id.full");
gitCommit = prop.getProperty("git.commit.id.abbrev");
gitVersion = prop.getProperty("git.build.version");
} catch (IOException ex) {
} catch (Exception ex) {
log.error("Failed to read git information from file!", ex);
}
}
Expand Down 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.7"));
Objects.requireNonNullElse(gitVersion, "3.1.8"));
}
return build;
}
Expand Down

0 comments on commit f0ced89

Please sign in to comment.