diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-02-19 09:41:18 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-02-19 09:43:36 +0700 |
commit | 08d0c4435b61512f55f8d0e357b09496fdbe155a (patch) | |
tree | 1766efaad12d8a6b4dfbc752b075be7e207f6427 /bcel-builder | |
parent | 97b184aae84da7a821aa9beafe542520d5cf25e4 (diff) | |
download | aspectj-08d0c4435b61512f55f8d0e357b09496fdbe155a.tar.gz aspectj-08d0c4435b61512f55f8d0e357b09496fdbe155a.zip |
Add 'AspectJ_JDK_Update' hint in various places
The hint is meant to help AspectJ developers identify the places where
there are to-dos for releases supporting new Java versions. This is work
in progress, new tags can be added wherever necessary in the future. But
for now, the most important places should be covered:
- AJC version string
- Test infrastructure (test suites, classes and XML files)
- BCEL class file version MAJOR_*, MINOR_* constants
- AjcTask constants for compiler source, target, release
- LangUtil::is*VMOrGreater methods
- ASM and JDT Core dependency versions
- CI workflow file
- Release notes
The to-do to check the tagged places is also mentioned in RELEASE.md.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'bcel-builder')
-rw-r--r-- | bcel-builder/src/main/java/org/aspectj/apache/bcel/Constants.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bcel-builder/src/main/java/org/aspectj/apache/bcel/Constants.java b/bcel-builder/src/main/java/org/aspectj/apache/bcel/Constants.java index 14e6a7f29..5b96bb6d1 100644 --- a/bcel-builder/src/main/java/org/aspectj/apache/bcel/Constants.java +++ b/bcel-builder/src/main/java/org/aspectj/apache/bcel/Constants.java @@ -106,6 +106,7 @@ public interface Constants { short MINOR_20 = 0; short MAJOR_21 = 65; short MINOR_21 = 0; + // AspectJ_JDK_Update // short MAJOR_22 = 66; // short MINOR_22 = 0; |