Skip to content

Commit db9bf3c

Browse files
committed
build: release 1.4.0
1 parent b0b5932 commit db9bf3c

File tree

2 files changed

+29
-20
lines changed

2 files changed

+29
-20
lines changed

README.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,21 @@ The jars are also available in Central:
2323
<dependency>
2424
<groupId>org.owasp.encoder</groupId>
2525
<artifactId>encoder</artifactId>
26-
<version>1.3.0</version>
26+
<version>1.4.0</version>
2727
</dependency>
2828

2929
<!-- using Servlet Spec 5 in the jakarta.servlet package use: -->
3030
<dependency>
3131
<groupId>org.owasp.encoder</groupId>
3232
<artifactId>encoder-jakarta-jsp</artifactId>
33-
<version>1.3.0</version>
33+
<version>1.4.0</version>
3434
</dependency>
3535

3636
<!-- using the Legacy Servlet Spec in the javax.servlet package use: -->
3737
<dependency>
3838
<groupId>org.owasp.encoder</groupId>
3939
<artifactId>encoder-jsp</artifactId>
40-
<version>1.3.0</version>
40+
<version>1.4.0</version>
4141
</dependency>
4242
```
4343

@@ -98,24 +98,28 @@ TagLib
9898

9999
News
100100
----
101+
### 2025-11-17 - 1.4.0 Release
102+
The team is happy to announce that version 1.4.0 has been released!
103+
* feat: add XML 1.1 encoding support [#88](https://github.com/OWASP/owasp-java-encoder/pull/88).
104+
101105
### 2024-08-20 - 1.3.1 Release
102106
The team is happy to announce that version 1.3.1 has been released!
103-
* fix: add OSGi related entries in the MANIFEST.MF file (#82).
104-
* fix: java.lang.NoSuchMethodError when running on Java 8 (#80).
107+
* fix: add OSGi related entries in the MANIFEST.MF file [#82](https://github.com/OWASP/owasp-java-encoder/pull/82).
108+
* fix: java.lang.NoSuchMethodError when running on Java 8 [#80](https://github.com/OWASP/owasp-java-encoder/pull/80).
105109

106110
### 2024-08-02 - 1.3.0 Release
107111
The team is happy to announce that version 1.3.0 has been released!
108112
* Minimum JDK Requirement is now Java 8
109113
- Requires Java 17 to build due to test case dependencies.
110-
* Adds Java 9 Module name via Multi-Release Jars (#77).
111-
* Fixed compilation errors with the ESAPI Thunk (#76).
112-
* Adds support for Servlet Spec 5 using the `jakarta.servlet.*` (#75).
114+
* Adds Java 9 Module name via Multi-Release Jars [#77](https://github.com/OWASP/owasp-java-encoder/pull/77).
115+
* Fixed compilation errors with the ESAPI Thunk [#76](https://github.com/OWASP/owasp-java-encoder/pull/76).
116+
* Adds support for Servlet Spec 5 using the `jakarta.servlet.*` [#75](https://github.com/OWASP/owasp-java-encoder/pull/88).
113117
- taglib : &lt;%@taglib prefix="e" uri="owasp.encoder.jakarta"%&gt;
114118

115119
### 2020-11-08 - 1.2.3 Release
116120
The team is happy to announce that version 1.2.3 has been released!
117-
* Update to make the manifest OSGi-compliant (#39).
118-
* Update to support ESAPI 2.2 and later (#37).
121+
* Update to make the manifest OSGi-compliant [#39](https://github.com/OWASP/owasp-java-encoder/pull/39).
122+
* Update to support ESAPI 2.2 and later [#37](https://github.com/OWASP/owasp-java-encoder/pull/37).
119123

120124
### 2018-09-14 - 1.2.2 Release
121125
The team is happy to announce that version 1.2.2 has been released!

pom.xml

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
<groupId>org.owasp.encoder</groupId>
4343
<artifactId>encoder-parent</artifactId>
44-
<version>1.3.1</version>
44+
<version>1.4.0</version>
4545
<packaging>pom</packaging>
4646

4747
<name>OWASP Java Encoder Project</name>
@@ -92,15 +92,6 @@
9292
<url>http://owasp.github.io/owasp-java-encoder</url>
9393
</site>
9494
</distributionManagement>
95-
<mailingLists>
96-
<mailingList>
97-
<name>OWASP Java Encoder Issues at GitHub</name>
98-
<subscribe>https://github.com/OWASP/owasp-java-encoder/issues</subscribe>
99-
<unsubscribe>https://github.com/OWASP/owasp-java-encoder/issues</unsubscribe>
100-
<post>https://github.com/OWASP/owasp-java-encoder/issues</post>
101-
<archive>https://github.com/OWASP/owasp-java-encoder/issues</archive>
102-
</mailingList>
103-
</mailingLists>
10495

10596
<issueManagement>
10697
<system>github</system>
@@ -259,6 +250,11 @@
259250
<artifactId>findbugs-maven-plugin</artifactId>
260251
<version>3.0.4</version>
261252
</plugin>
253+
<plugin>
254+
<groupId>org.sonatype.central</groupId>
255+
<artifactId>central-publishing-maven-plugin</artifactId>
256+
<version>0.9.0</version>
257+
</plugin>
262258
</plugins>
263259
</pluginManagement>
264260

@@ -384,6 +380,15 @@
384380
<groupId>org.apache.maven.plugins</groupId>
385381
<artifactId>maven-site-plugin</artifactId>
386382
</plugin>
383+
<plugin>
384+
<groupId>org.sonatype.central</groupId>
385+
<artifactId>central-publishing-maven-plugin</artifactId>
386+
<extensions>true</extensions>
387+
<configuration>
388+
<publishingServerId>central</publishingServerId>
389+
<autoPublish>false</autoPublish>
390+
</configuration>
391+
</plugin>
387392
</plugins>
388393
</build>
389394
<reporting>

0 commit comments

Comments
 (0)