All Versions
39
Latest Version
Avg Release Cycle
10 days
Latest Release
-

Changelog History
Page 3

  • v3.0.0 Changes

    2015-03-30 A whole bunch of changes!

    • ๐Ÿ”„ Changed the default retrolambda to 2.0.0
    • โž• Added support for default methods, add defaultMethods true to the retrolambda block. Note: due to a current limitation in retrolamba, this will require all of your class files to be fed through retrolambda on each build. This may adversely affect build times.
    • ๐Ÿ—„ incremental false is no longer deprecated but has different semantics. Instead of being a hack around gradle-retrolambda breaking other plugins, it now only forces all of your class files to be run through retrolambda instead of only the changed ones.
    • โž• Added support for android unit tests, including lambdas in the tests themselves.
    • No longer patch the android jar, modify the classpath instead. This should resolve issues with using gradle-retrolambda with more obscure android sdks, like google glass. This should also speed up a clean build since it doesn't have to do any zipping shenanigans.
    • ๐Ÿ”Œ Ensure the gradle plugin is compiled with java 6 compatibility. This should allow you to run gradle with an older version of java if you don't want java 8 set as the default. This was always the intention, but was broken in the last build.
    • ๐Ÿ‘ More minor changes to how the java compile task is replaced, this should ensure better compatibility with other plugins. Note: these changes make the plugin application order more important. Make sure you you apply this plugin last.
    • โœ‚ Removed 'retrolambda', now you can only apply the plugin with 'me.tatarka.retrolambda'.
  • v2.5.0 Changes

    2014-12-14

    • A more robust fix for android-apt compatibility. Important: If you were experiencing issues with โšก๏ธ android-apt previously and updated to this version, you must run gradle build --rerun-tasks once.
    • ๐Ÿ—„ Deprecate plugin name 'retrolambda' for 'me.tatarka.retrolambda' in preparation to publishing on ๐Ÿ”Œ the gradle plugin portal.
  • v2.4.1 Changes

    2014-11-01

    • ๐Ÿ›  Fixed compatibility with android-apt.
    • ๐Ÿ›  Fixed typo in one of the thrown exceptions. (tomxor)
    • ๐Ÿ‘Œ Support groovy testing (ex. spock). (harningt)
  • v2.4.0 Changes

    2014-09-21

    • ๐Ÿ‘ Better incremental compile method that doesn't break lint and proguard (and probably other tasks). Because of this, retrolambda.incremental is deprecated and does nothing.
    • ๐Ÿ‘ Better handling of manually setting the retrolamba version with retrolambConfig.
    • Don't use the retrolambda javaagent if using version 1.6.0+.
    • 0๏ธโƒฃ Set the default retrolambda version to 1.6.0.
  • v2.3.1 Changes

    2014-09-18

    • ๐Ÿ›  Fixed retrolambda.incremental false causing the retrolambda task not to run.
  • v2.3.0 Changes

    2014-09-17

    • โž• Add ability to set retrolambda.incremental false to disable incremental compilation, since it is incompatible with android lint/proguard.
  • v2.2.3 Changes

    2014-08-17

    • ๐Ÿ”„ Change dependency back to localGroovy(), org.codehaus.groovy:groovy-all:2.3.3 was causing issues.
  • v2.2.2 Changes

    2014-08-11

    • ๐Ÿ‘Œ Support a java.home path that does not end in /jre, by using it as it is. This is an issue on OSX which may have a different directory structure.
  • v2.2.1 Changes

    2014-08-03

    • ๐Ÿ”Œ Ensure output directory is created even if the source set is missing files for the java plugin. Otherwise, compiling the source set would error out.
  • v2.2.0 Changes

    2014-07-26

    • โž• Added way to add custom jvm arguments when running retrolambda.
    • Disable extractAnnotations tasks since they are incompatible with java 8 sources.