aboutsummaryrefslogtreecommitdiffstats
path: root/docs/dist/doc/README-1.7.4.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'docs/dist/doc/README-1.7.4.adoc')
-rw-r--r--docs/dist/doc/README-1.7.4.adoc34
1 files changed, 34 insertions, 0 deletions
diff --git a/docs/dist/doc/README-1.7.4.adoc b/docs/dist/doc/README-1.7.4.adoc
new file mode 100644
index 000000000..20464744a
--- /dev/null
+++ b/docs/dist/doc/README-1.7.4.adoc
@@ -0,0 +1,34 @@
+== AspectJ 1.7.4
+
+_© Copyright 2013 Contributors. All rights reserved._
+
+The list of resolved issues in 1.7.4 is available
+https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced;bug_status=RESOLVED;bug_status=VERIFIED;bug_status=CLOSED;product=AspectJ;target_milestone=1.7.4;[here]
+
+_Release info: 1.7.4 available 24-Oct-2013_
+
+*Notes*
+
+* This release includes an important fix for using loadtime weaving in a
+JVM where JMX is turned on
+(https://bugs.eclipse.org/bugs/show_bug.cgi?id=415266[415266])
+* There are some new message insert keys usable in declare error/warning
+(https://bugs.eclipse.org/bugs/show_bug.cgi?id=420210[420210]) The new
+keys are:
++
+[source, java]
+....
+joinpoint.enclosingclass // Bar
+joinpoint.enclosingmember // void Bar.foo(String)
+joinpoint.enclosingmember.name // foo
+....
++
+All keys are case insensitive.
+* It is now possible to specify individual xlint settings without
+needing to supply a file
+(https://bugs.eclipse.org/bugs/show_bug.cgi?id=419279[419279])
++
+[source, text]
+....
+ajc -Xlint:adviceDidNotMatch=error,noGuardForLazyTjp=ignore Foo.java
+....