From 08d0c4435b61512f55f8d0e357b09496fdbe155a Mon Sep 17 00:00:00 2001 From: Alexander Kriegisch Date: Mon, 19 Feb 2024 09:41:18 +0700 Subject: 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 --- bcel-builder/src/main/java/org/aspectj/apache/bcel/Constants.java | 1 + 1 file changed, 1 insertion(+) (limited to 'bcel-builder') 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; -- cgit v1.2.3