Skip to content

Commit

Permalink
start new iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankHossfeld committed Oct 13, 2024
1 parent 08794e8 commit f0ad62a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
exit 1
if: ${{ steps.version-check.outputs.already-exists == 'true' }}
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
body: Relase of version ${{ steps.project.outputs.version }}
tag_name: ${{ steps.project.outputs.version }}
Expand Down
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.20.1<< 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.20.1";
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.20.1",
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 @@ -87,7 +87,7 @@
</distributionManagement>

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

<auto-common.version>1.2.2</auto-common.version>
<auto-service.version>1.1.1</auto-service.version>
Expand Down

0 comments on commit f0ad62a

Please sign in to comment.