diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-02-01 11:57:10 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-02-01 11:57:10 +0700 |
commit | bbe629bc4a5e8c76a0b31686eedc88add5d71360 (patch) | |
tree | c03cca36ccdd16f37e23ff66c191381a41b5ed8a /docs/release/README-1.6.11.adoc | |
parent | d6056515f8078572dd35cd091fb31ba48e9d8b53 (diff) | |
download | aspectj-bbe629bc4a5e8c76a0b31686eedc88add5d71360.tar.gz aspectj-bbe629bc4a5e8c76a0b31686eedc88add5d71360.zip |
Always use ":leveloffset: +1" with ":doctype: book"
Headlines per ADOC file should start at level 1, not 2. Adjusting the
level offset for books helps to avoid warnings when including book
chapters, but still allows to also use the chapters as stand-alone
documents.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'docs/release/README-1.6.11.adoc')
-rw-r--r-- | docs/release/README-1.6.11.adoc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/release/README-1.6.11.adoc b/docs/release/README-1.6.11.adoc index e5f4226a2..b2e982c71 100644 --- a/docs/release/README-1.6.11.adoc +++ b/docs/release/README-1.6.11.adoc @@ -1,4 +1,4 @@ -== AspectJ 1.6.11 += AspectJ 1.6.11 _© Copyright 2010-2011 Contributors. All rights reserved._ @@ -7,9 +7,9 @@ https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced;bug_status=RESOL _Release info: 1.6.11 available 15-Mar-2011_ -=== Notable Changes +== Notable Changes -==== RC1 - Our own XML parser +=== RC1 - Our own XML parser Due to the way AspectJ loads one of the standard XML parsers (for processing aop.xml) it was possible to get into a deadlock situation. To @@ -21,7 +21,7 @@ org.aspectj.weaver.loadtime.configuration.lightxmlparser=true. ''''' -==== M2 - Multithreaded world access +=== M2 - Multithreaded world access The weaver is backed by a representation of types called a world. Traditionally the worlds have supported single threads - and that is how @@ -32,7 +32,7 @@ same time. Under https://bugs.eclipse.org/bugs/show_bug.cgi?id=337855[bug337855] some changes have been made to better support this kind of configuration. -==== M2 - various attribute deserialization issues +=== M2 - various attribute deserialization issues In 1.6.9 we made some radical changes to the serialized form. It turns out some of the deserialization code wasn't handling these new forms @@ -40,7 +40,7 @@ quite right. This would manifest as an IllegalStateException or IndexOutOfBoundsException or similar, during attribute unpacking. These issues have now all been sorted out in 1.6.11.M2. -==== M2 - further optimizations in model for AJDT +=== M2 - further optimizations in model for AJDT More changes have been made for users trying out the -Xset:minimalModel=true option to try and reduce the memory used in @@ -52,7 +52,7 @@ over), but now it is insensitive to ordering and should always recover the same amount across builds of the same project. With a bit more positive feedback on this option, it will become the default under AJDT. -==== M2 - spaces in path names can cause problems +=== M2 - spaces in path names can cause problems AspectJ had problems if the paths it was being passed (e.g. aspectpath) included spaces. This is bug @@ -61,7 +61,7 @@ been fixed. ''''' -==== M1 - Annotation removal +=== M1 - Annotation removal Traditionally AspectJ has taken an additive approach, where methods/fields/supertypes/annotations can only be added to types. Now, @@ -81,7 +81,7 @@ Notice the '-' in front of the annotation, meaning 'removal'. The whole construct means 'remove the @Anno annotation from the int field called i in type Foo'. It is not yet supported on the other forms of declare @. -==== M1 - Intertype innertypes +=== M1 - Intertype innertypes More work has gone into this feature. It was originally added in 1.6.9 but the inability to use it with binary weaving greatly reduced the |