I encourage everyone to upgrade, we killed a few bugs, and there's only two very tiny issues which may cause a problem if you do upgrade, both easily disabled if you do run into a problem (see the suppressConstructorProperties and doNotUseGetter options on the various lombok annotations).
Download and documentation here: http://www.projectlombok.org/ Changelog for the 0.9.3 release is here: http://projectlombok.org/changelog.html The biggest highlights: * @Data and friends now use getters instead of direct field access when generating the toString(), equals(), and hashCode() methods. Hibernate POJO and other proxied object users: rejoice! * You can pick and mix the kinds of constructors you'd like your POJO to have with @RequiredArgsConstructor, @AllArgsConstructor, @NoArgsConstructor * If you're using the java.beans libraries, lombok-generated POJOs now include a @ConstructorProperties annotation, which lets beans utilities create new beans, not just modify existing ones. * If you're an ecj user, lombok now works on that automatically, no need to install anything. As well as a smattering of bug fixes. -- You received this message because you are subscribed to the Google Groups "The Java Posse" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/javaposse?hl=en.
