diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-01-20 22:37:46 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-01-20 22:37:46 +0100 |
commit | f153f1cda304d56f9b20cd5e39adf83e74067045 (patch) | |
tree | 332bb85125a3134a15ba132f9fbfa3ef182b4e7f /doc | |
parent | 19de8fbe4743afc58df39555602c67e46fc2e016 (diff) | |
parent | 296d1c2ed8a6aa29fb2a1ce7f16ea9e39b49d7d5 (diff) | |
download | lombok-f153f1cda304d56f9b20cd5e39adf83e74067045.tar.gz lombok-f153f1cda304d56f9b20cd5e39adf83e74067045.tar.bz2 lombok-f153f1cda304d56f9b20cd5e39adf83e74067045.zip |
Merge the @Singular feature and the fix for ecj and the shadowloader.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/changelog.markdown | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index fbe8e0ad..e7dc910d 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -3,6 +3,7 @@ Lombok Changelog ### v1.14.9.shadow "<del>Edgy</del> Shadowy Guinea Pig" * Added a launcher to the lombok boot process which removes the need for `-Xbootclasspath` to be in your `eclipse.ini` file, and removes all non-public API and third party dependencies (such as ASM) from the lombok jar, thus removing them from your IDE's auto complete offerings in any project that uses lombok. For those debugging lombok, the launcher enables hot code replace which makes debugging a lot easier, as previously one was required to shut down the IDE, rebuild the jar, and relaunch. Add `-Dshadow.override.lombok=/path/to/lombok/bin` to the launch target for hot code replace. +* BUGFIX: delombok: Using exotic characters in your source files would overzealously backslash-u escape them. Now, all characters are printed unescaped, assuming your chosen encoding can support them. Otherwise, they are escaped. [Issue #759](https://code.google.com/p/projectlombok/issues/detail?id=759) * Builder __TODO TODO TODO TODO DO NOT SHIP YET__: |