diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-26 10:02:09 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-26 10:02:09 +0200 |
commit | a73dd520412b907ee072e8fe8164483d949d9ddf (patch) | |
tree | 3b697ed9b4b2ed4b16990cb5c5ea6979a1ac192d /doc | |
parent | f74109fdc8d35a1577167736598d95dcad321f0f (diff) | |
download | lombok-a73dd520412b907ee072e8fe8164483d949d9ddf.tar.gz lombok-a73dd520412b907ee072e8fe8164483d949d9ddf.tar.bz2 lombok-a73dd520412b907ee072e8fe8164483d949d9ddf.zip |
Added changelog tracking.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/changelog.markdown | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown new file mode 100644 index 00000000..6c488a0c --- /dev/null +++ b/doc/changelog.markdown @@ -0,0 +1,15 @@ +Lombok Changelog +---------------- + +### v0.8.1 + +* Changelog tracking from this version on. +* Using eclipse's 'find callers' on a @Data annotation will now find callers of the static constructor if you generated it. If not, it still finds callers to hashCode() as before (it's not possible to make eclipse find callers to the normal constructor, though you can just use 'find callers' on the class name, which works fine). [link to issue](http://code.google.com/p/projectlombok/issues/detail?id=5) +* If your field is called 'hasFoo' and its a boolean, and you use @Getter or @Data to generate a getter for it, that getter will now be called 'hasFoo' and not 'isHasFoo' as before. This rule holds for any field prefixed with 'has', 'is', or 'get', AND the character following the prefix is not lowercase (so that 'hashCodeGenerated' is not erroneously identified as already having a prefix!). Similar logic has been added to not generate a getter at all for a field named 'foo' or 'hasFoo' if there is already a method named 'isFoo'. [link to issue](http://code.google.com/p/projectlombok/issues/detail?id=4) +* Starting the lombok installer on mac os X using soylatte instead of apple's JVM now correctly detects being on a mac, and using mac-specific code for finding and installing eclipses. [link to issue](http://code.google.com/p/projectlombok/issues/detail?id=7) +* For non-mac, non-windows installations, the jar file in the `-javaagent` parameter is now written as an absolute path in `eclipse.ini` instead of a relative one. For some reason, on at least 1 linux installation, an absolute path is required to make javaagent work. This 'fix' has the unfortunate side-effect of making it impossible to move your eclipse installation around without breaking the pointer to the lombok java agent, so this change has only been introduced for non-windows, non-mac. Thanks to WouterS for spotting this one and helping us out with some research on fixing it. [link to issue](http://code.google.com/p/projectlombok/issues/detail?id=6) + +### v0.8 + +* Initial release before announcements +* (note: There are a few different editions of lombok out there, all tagged with v0.8.)
\ No newline at end of file |