Skip to content

Commit

Permalink
Merge pull request #362 from NaluKit/prepare-release-2.20.2
Browse files Browse the repository at this point in the history
Prepare release 2.20.2
  • Loading branch information
FrankHossfeld authored Nov 1, 2024
2 parents 08794e8 + 8164297 commit 126a021
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 13 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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,12 +136,12 @@ To use Nalu add the following dependencies to your pom:
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu</artifactId>
<version>2.20.1</version>
<version>2.20.2</version>
</dependency>
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-processor</artifactId>
<version>2.20.1</version>
<version>2.20.2</version>
<scope>provided</scope>
</dependency>
```
Expand Down Expand Up @@ -173,7 +173,7 @@ If the project uses a widget set based on **Elemental2**, **Elemento** or **Domi
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-elemental2</artifactId>
<version>2.20.1</version>
<version>2.20.2</version>
</dependency>
```

Expand Down Expand Up @@ -202,7 +202,7 @@ For Elemento there's a dedicated plugin which supports `org.jboss.gwt.elemento.c
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-elemento</artifactId>
<version>2.20.1</version>
<version>2.20.2</version>
</dependency>
```

Expand All @@ -222,7 +222,7 @@ For Domino-UI Version 2 there's also a dedicated plugin which supports `org.domi
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-domino-v2</artifactId>
<version>2.20.1</version>
<version>2.20.2</version>
</dependency>
```

Expand Down Expand Up @@ -265,12 +265,12 @@ If your project uses a widget set based on **GWT** 2.8.2 or newer, use the **Nal
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-gwt</artifactId>
<version>2.20.1</version>
<version>2.20.2</version>
</dependency>
<dependency>
<groupId>com.github.nalukit</groupId>
<artifactId>nalu-plugin-gwt-processor</artifactId>
<version>2.20.1</version>
<version>2.20.2</version>
<scope>provided</scope>
</dependency>
```
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 >>2.20.2<< 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 "2.20.2";
}

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("2.20.2",
Nalu.getVersion());
}

Expand Down
7 changes: 7 additions & 0 deletions owasp/owasp-suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -391,4 +391,11 @@
<cve>CVE-2020-8908</cve>
<cve>CVE-2023-2976</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: jetty-server-9.4.44.v20210927.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/org\.eclipse\.jetty/jetty-server@.*$</packageUrl>
<vulnerabilityName>CVE-2024-8184</vulnerabilityName>
</suppress>
</suppressions>
4 changes: 2 additions & 2 deletions 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>2.20.2</revision>

<auto-common.version>1.2.2</auto-common.version>
<auto-service.version>1.1.1</auto-service.version>
Expand All @@ -97,7 +97,7 @@
<guava.version>33.2.1-jre</guava.version>
<gwt-event.version>1.0.0-RC1</gwt-event.version>
<gwt-regexp.version>1.0.0-RC1</gwt-regexp.version>
<gwt.version>2.11.0</gwt.version>
<gwt.version>2.12.0</gwt.version>
<hamcrest.version>1.3</hamcrest.version>
<hamcrest-core.version>2.2</hamcrest-core.version>
<java.doc.executable>${java.home}/bin/javadoc</java.doc.executable>
Expand Down

0 comments on commit 126a021

Please sign in to comment.