Skip to content

Commit

Permalink
updated README/CHANELOG and bumped default retrolambda version to 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
evant committed May 2, 2015
1 parent cc616d3 commit 3547708
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
### 3.0.1
### 3.1.0
- Major refactoring of android plugin.
The method for modifying the javaCompile task is now *way* less hackey. In fact,
it is much closer to the original way that it was done. I had originally
abandoned this approach because it was breaking increment compilation is some
weird ways. However, I think I have solved it.

What this means for you: It is now less fickle of plugin application order and
way less likely to break other plugins.
- Properly split bootclasspath if it has multiple paths

#### 3.0.1
- Fixed occasional "Build exception: cannot call Task.setEnabled(boolean)" error.
- Fixed minor warning typo.
- Uploaded to the gradle plugin portal.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Usage
}
dependencies {
classpath 'me.tatarka:gradle-retrolambda:3.0.1'
classpath 'me.tatarka:gradle-retrolambda:3.1.0'
}
}
Expand All @@ -39,7 +39,7 @@ Usage
alternativly, you can use the new plugin syntax for gradle `2.1+`
```groovy
plugins {
id "me.tatarka.retrolambda" version "3.0.1"
id "me.tatarka.retrolambda" version "3.1.0"
}
```

Expand Down Expand Up @@ -92,7 +92,7 @@ retrolambda {
### Using a Different Version of the retrolambda.jar

The default version of retrolambda used is
`'net.orfjackal.retrolambda:retrolambda:2.0.0'`. If you want to use a different
`'net.orfjackal.retrolambda:retrolambda:2.0.2'`. If you want to use a different
one, you can configure it in your dependencies.

```groovy
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ repositories {
}

group = 'me.tatarka'
version = '3.1.0-SNAPSHOT'
version = '3.1.0'

sourceCompatibility = '1.6'

Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include ':sample-java',
':sample-java-default-methods',
':sample-android-app',
':sample-android-lib'
':sample-android-lib'
2 changes: 1 addition & 1 deletion src/main/groovy/me/tatarka/RetrolambdaPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import org.gradle.api.plugins.JavaPlugin
* To change this template use File | Settings | File Templates.
*/
public class RetrolambdaPlugin implements Plugin<Project> {
protected static def retrolambdaCompile = "net.orfjackal.retrolambda:retrolambda:2.0.0"
protected static def retrolambdaCompile = "net.orfjackal.retrolambda:retrolambda:2.0.2"

@Override
void apply(Project project) {
Expand Down

0 comments on commit 3547708

Please sign in to comment.