Skip to content

Commit

Permalink
bumped version to 3.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
evant committed Nov 19, 2015
1 parent bb4f065 commit 1622447
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
#### 3.2.4
- Bumped default retrolambda version to `2.0.6`.

#### 3.2.3
- Fixed long builds times on large projects due to https://issues.gradle.org/browse/GRADLE-3283.
Note: Running the retrolambda task directly will no longer work, you must run the relevant java
compile task instead.
- Bumped default retrolambda version to `2.0.6`.

#### 3.2.2
- Fixed wrongly deleting lambda classes where the related class is a prefix of the one that actually
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.2.3'
classpath 'me.tatarka:gradle-retrolambda:3.2.4'
}
}
Expand All @@ -39,7 +39,7 @@ Usage
alternatively, you can use the new plugin syntax for gradle `2.1+`
```groovy
plugins {
id "me.tatarka.retrolambda" version "3.2.3"
id "me.tatarka.retrolambda" version "3.2.4"
}
```

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.5'`. If you want to use a different
`'net.orfjackal.retrolambda:retrolambda:2.0.6'`. 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.2.3'
version = '3.2.4'

sourceCompatibility = '1.6'

Expand Down
2 changes: 1 addition & 1 deletion sample-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jar {
}

retrolambda {
javaVersion JavaVersion.VERSION_1_5
javaVersion JavaVersion.VERSION_1_6
}

task buildscriptDependencies << {
Expand Down

0 comments on commit 1622447

Please sign in to comment.