Skip to content

Commit

Permalink
Release 0.2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrik Erdes committed Jun 30, 2019
1 parent 7c7ef22 commit 8cf9c39
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Include in your `build.gradle`

```groovy
plugins {
id 'se.patrikerdes.use-latest-versions' version '0.2.10'
id 'se.patrikerdes.use-latest-versions' version '0.2.11'
id 'com.github.ben-manes.versions' version '0.21.0'
}
```
Expand All @@ -32,7 +32,7 @@ buildscript {
jcenter()
}
dependencies {
classpath "se.patrikerdes:gradle-use-latest-versions-plugin:0.2.10"
classpath "se.patrikerdes:gradle-use-latest-versions-plugin:0.2.11"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.21.0'
}
}
Expand All @@ -47,7 +47,7 @@ apply plugin: 'se.patrikerdes.use-latest-versions'
Include in your `build.gradle.kts`
```groovy
plugins {
id("se.patrikerdes.use-latest-versions") version "0.2.10"
id("se.patrikerdes.use-latest-versions") version "0.2.11"
id("com.github.ben-manes.versions") version "0.21.0"
}
```
Expand All @@ -63,7 +63,7 @@ buildscript {
jcenter()
}
dependencies {
classpath("gradle.plugin.se.patrikerdes:gradle-use-latest-versions-plugin:0.2.10")
classpath("gradle.plugin.se.patrikerdes:gradle-use-latest-versions-plugin:0.2.11")
classpath("com.github.ben-manes:gradle-versions-plugin:0.21.0")
}
}
Expand All @@ -81,7 +81,7 @@ Given this build.gradle file:

```groovy
plugins {
id 'se.patrikerdes.use-latest-versions' version '0.2.10'
id 'se.patrikerdes.use-latest-versions' version '0.2.11'
id 'com.github.ben-manes.versions' version '0.19.0'
}
Expand Down Expand Up @@ -115,7 +115,7 @@ variables – and you build.gradle file will look like this:

```groovy
plugins {
id 'se.patrikerdes.use-latest-versions' version '0.2.10'
id 'se.patrikerdes.use-latest-versions' version '0.2.11'
id 'com.github.ben-manes.versions' version '0.21.0' // <- Updated
}
Expand Down Expand Up @@ -269,7 +269,7 @@ buildscript {
dependencies{
classpath group: 'se.patrikerdes',
name: 'gradle-use-latest-versions-plugin',
version: '0.2.10'
version: '0.2.11'
}
}
Expand All @@ -291,6 +291,10 @@ From the [Maven Versions Plugin](http://www.mojohaus.org/versions-maven-plugin/i

## Changelog

### 0.2.11

Fixed [issue #25](https://github.com/patrikerdes/gradle-use-latest-versions-plugin/issues/25), Don't crash when dependencyUpdates/report.json has a version range

### 0.2.10

Fixed [issue #24](https://github.com/patrikerdes/gradle-use-latest-versions-plugin/issues/24), Allow for non-standard buildDir setting
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies {
}

group = 'se.patrikerdes'
version = '0.2.10'
version = '0.2.11'

sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down
2 changes: 1 addition & 1 deletion examples/localReadmeExample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath 'se.patrikerdes:gradle-use-latest-versions-plugin:0.2.10'
classpath 'se.patrikerdes:gradle-use-latest-versions-plugin:0.2.11'
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/publishedReadmeExample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// To see what the plugin can do, run ./gradlew useLatestVersions in this folder

plugins {
id 'se.patrikerdes.use-latest-versions' version '0.2.10'
id 'se.patrikerdes.use-latest-versions' version '0.2.11'
id 'com.github.ben-manes.versions' version '0.16.0'
}

Expand Down

0 comments on commit 8cf9c39

Please sign in to comment.