Skip to content

Commit

Permalink
set version to HEAD-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankHossfeld committed Dec 19, 2023
1 parent 428572c commit 9c08a20
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void logProcessorVersion() {
this.eventBus.fireEvent(LogEvent.create()
.sdmOnly(true)
.addMessage("=================================================================================")
.addMessage("Nalu processor version >>2.12.7<< used to generate this source")
.addMessage("Nalu processor version >>HEAD-SNAPSHOT<< used to generate this source")
.addMessage("=================================================================================")
.addMessage(""));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class Nalu {

public static String getVersion() {
// TODO Change this for other versions
return "2.12.7";
return "HEAD-SNAPSHOT";
}

public static boolean hasHistory() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class NaluTest {
void getVersion()
throws IOException {
// TODO Change this if you want to test against another version
Assertions.assertEquals("2.12.7",
Assertions.assertEquals("HEAD-SNAPSHOT",
Nalu.getVersion());
}

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
</distributionManagement>

<properties>
<revision>2.12.7</revision>
<revision>HEAD-SNAPSHOT</revision>

<github.global.server>github</github.global.server>

Expand Down

0 comments on commit 9c08a20

Please sign in to comment.