Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-11-21 | release versioning prep 0.10.4 | Reinier Zwitserloot | |
2011-11-20 | Additional fix for issue 300: Using 'lombok.val' written out in full would ↵ | Reinier Zwitserloot | |
cause ArrayIndexOutOfBoundsException: 0 errors to pop up in the editor. Also updated changelog. | |||
2011-11-20 | Added changelog for previous commit (fixing issue 299) | Reinier Zwitserloot | |
2011-11-15 | Added fixing of issues 90, 138, 263, 286 to changelog. (all jvanderhel's work) | Reinier Zwitserloot | |
2011-11-09 | Fixed a broken link in changelog. | Reinier Zwitserloot | |
2011-11-07 | Fixed issue 295: Using log in static initializers | Robbert Jan Grootjans | |
2011-11-01 | Added fixing of delombok sourcepath issue to changelog and preparing for ↵ | Roel Spilker | |
0.10.2 release. | |||
2011-10-25 | Fixed issue 289: non-static inner classes whose outer class has generics ↵ | Reinier Zwitserloot | |
can't be @EqualsAndHashCode marked. | |||
2011-10-25 | Updated changelog with fix for 287 | Reinier Zwitserloot | |
2011-10-03 | Preparing for release 0.10.1. Tiny one, but solves enough crucial bugs to ↵ | Reinier Zwitserloot | |
warrant a new version. | |||
2011-09-20 | Fixed issue #269: annotations on enum values weren't being printed by delombok. | Reinier Zwitserloot | |
(Due to yet another bug in javac's pretty printer...) | |||
2011-09-20 | preparing for an edge release, and updated changelog. | Reinier Zwitserloot | |
2011-08-19 | Preparing for release of 0.10.0-final; updated version and cleaned up changelog. | Reinier Zwitserloot | |
2011-08-15 | Removed support for onMethod, onParam and onConstructor due to javac7 type ↵ | Roel Spilker | |
incapabilities. Issue #251 | |||
2011-08-08 | changelog update for issue #249 | Roel Spilker | |
2011-08-02 | Updated changelog to reflect fixing 164. | Reinier Zwitserloot | |
2011-07-18 | UPdated changelog for the equals/hashCode/canEqual fix (issue #240) | Roel Spilker | |
2011-06-21 | changelog fix number 3 of the day. | Reinier Zwitserloot | |
2011-06-21 | And another typo in the changelog fixed. | Reinier Zwitserloot | |
2011-06-21 | Typoed it's. git blame says I did it. I conclude I'm an idiot. | Reinier Zwitserloot | |
2011-06-20 | forgot a few things in the changelog. | Reinier Zwitserloot | |
2011-06-20 | Updated changelog | Reinier Zwitserloot | |
2011-05-16 | updated changelog for issue #210 | grootjans | |
2011-05-09 | Added Issue 210 the the changelog. | Roel Spilker | |
2011-02-15 | Updated changelog to represent fix for issue #177. | Roel Spilker | |
2011-02-07 | Updated changelog for @Delegate and 'val' | grootjans | |
2011-02-07 | trivial change: Removed bug 181 from the changelog. It's too trivial to put ↵ | Reinier Zwitserloot | |
on there. | |||
2011-02-07 | Updated changelog to reflect fix of issue #148 (getter/setter with booleans ↵ | Reinier Zwitserloot | |
wasn't up to spec) | |||
2011-01-31 | Calling setCharset with null will use the system default charset (issue 181) | Roel Spilker | |
2010-12-28 | @ToString, @Getter, and @XArgsConstructor now work on, and are legal on, ↵ | Reinier Zwitserloot | |
enums. Docs have been updated. Behaviour of @XArgsConstructor when its placement makes no sense (i.e. when annotating an interface with them) is no longer 'throw weird errors', but has been brought in line with the others: A nice error message is generated. Fixes issue #175 | |||
2010-11-07 | Updated changelog | Roel Spilker | |
2010-11-06 | Updated changelog | Roel Spilker | |
2010-08-15 | Documented the addition of the post-process stuff, which fixes issue 144. | Reinier Zwitserloot | |
2010-08-14 | Changelog for fix to issue 140 | Reinier Zwitserloot | |
2010-07-30 | typofixed the link to issue 133 in the changelog. | Reinier Zwitserloot | |
2010-07-28 | Updated changelog to note issue 136 has been fixed. | Reinier Zwitserloot | |
2010-07-25 | 0.9.3 release prep | Reinier Zwitserloot | |
2010-07-25 | Added changelog entry for #133: Outer.Inner instead of just Inner in toString(). | Reinier Zwitserloot | |
2010-07-22 | [TRIVIAL] Typofix in changelog. | Reinier Zwitserloot | |
2010-07-21 | delombok on most javacs would quit with a NoSuchFieldError if it contains ↵ | Reinier Zwitserloot | |
<?> style wildcards anywhere in the source. No longer. Fixes issue #134. | |||
2010-07-21 | Added using .getX() instead of using .x in equals, hashCode, and toString. ↵ | Reinier Zwitserloot | |
Also updated changelog as well as the docs. Also updated usage examples for @EqualsAndHashCode, @ToString, and @Data, which also contained some other minor issues (such as missing this. qualifiers). Still to do is to detect that getters don't exist _yet_ but will later due to @Getter or @Data. | |||
2010-07-20 | @Getter int x, y; used to only apply to 'x', now it applies to both x and y. | Reinier Zwitserloot | |
Fixes issue #54 | |||
2010-07-20 | import lombok.*; wasn't working in eclipse. It is now. | Reinier Zwitserloot | |
Fixes issue #102. | |||
2010-07-20 | import lombok.AccessLevel is now also removed during delomboking. | Reinier Zwitserloot | |
Also, when NOT running delombok, the javac processors no longer delete the lombok annotations as they process. This is particularly relevant for netbeans. This fixes issue #100 and #103. | |||
2010-07-19 | Added support for @ConstructorProperties generation for generated constructors. | Reinier Zwitserloot | |
Also added fix: @Constructor with access level none are now no longer generated. Implements issue #122 | |||
2010-07-19 | Added support for @NoArgsConstructor, @RequiredArgsConstructor and ↵ | Reinier Zwitserloot | |
@AllArgsConstructor for eclipse. Implements issue #79. | |||
2010-07-18 | All generated fields and methods now get a @SuppressWarnings("all"). | Reinier Zwitserloot | |
Implements issue #47. | |||
2010-07-18 | Updated changelog for fixing issue #48 | Reinier Zwitserloot | |
2010-07-17 | Implements issue #129: @Getter and @Setter are now legal on entire types. | Reinier Zwitserloot | |
2010-07-16 | Did some maintainance on the changelog. | Reinier Zwitserloot | |