aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2023-03-21 16:31:04 +0100
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2023-03-21 16:31:04 +0100
commitf6c9bfba1b0bcc0f1bd0fbdff79aeffe59f28b70 (patch)
tree854a9a146bdee94baca2f334e4fcd5ecdca3ddc0
parent148680cb495464838299988828117afb7e4452a9 (diff)
downloadlombok-f6c9bfba1b0bcc0f1bd0fbdff79aeffe59f28b70.tar.gz
lombok-f6c9bfba1b0bcc0f1bd0fbdff79aeffe59f28b70.tar.bz2
lombok-f6c9bfba1b0bcc0f1bd0fbdff79aeffe59f28b70.zip
Updating tests and changelog to reflect JDK20 support
-rw-r--r--buildScripts/tests.ant.xml6
-rw-r--r--doc/changelog.markdown2
2 files changed, 4 insertions, 4 deletions
diff --git a/buildScripts/tests.ant.xml b/buildScripts/tests.ant.xml
index d34e1f82..140983bc 100644
--- a/buildScripts/tests.ant.xml
+++ b/buildScripts/tests.ant.xml
@@ -150,8 +150,8 @@ This buildfile is part of projectlombok.org. It takes care of compiling and runn
<!-- For non-LTS versions, feel free to aggressively update these to the current non-LTS openjdk version, and delete them once they roll out of the 6 month window. -->
- <target name="test.javac19" depends="test.formatter.compile, test.compile" description="runs the tests on your default VM, using javac19 as underlying compiler">
- <test.javacX version="19" />
+ <target name="test.javac20" depends="test.formatter.compile, test.compile" description="runs the tests on your default VM, using javac20 as underlying compiler">
+ <test.javacX version="20" />
</target>
<target name="test.javacCurrent" depends="test.formatter.compile, test.compile" description="runs the tests on your default VM, using its javac as underlying compiler">
@@ -293,5 +293,5 @@ This buildfile is part of projectlombok.org. It takes care of compiling and runn
</target>
<target name="test" depends="test.javacCurrent, test.eclipse-202212" description="runs the tests against the default JVM, javac, and eclipse" />
- <target name="test.broad" depends="test.javac8, test.javac17, test.javac19, test.eclipse-oxygen, test.eclipse-202212, test.eclipse-202006-jdk8" description="runs the tests against the default JVM, javac, and eclipse" />
+ <target name="test.broad" depends="test.javac8, test.javac17, test.javac20, test.eclipse-oxygen, test.eclipse-202212, test.eclipse-202006-jdk8" description="runs the tests against the default JVM, javac, and eclipse" />
</project>
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 86ff40e8..47b7bcf1 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -2,7 +2,7 @@ Lombok Changelog
----------------
### v1.18.27 "Edgy Guinea Pig"
-* We recently released v1.18.26; there is no edge release since then.
+* PLATFORM: JDK20 support added. [Issue #3353](https://github.com/projectlombok/lombok/issues/3353).
### v1.18.26 (Feb 3rd, 2023)