Skip to content

Commit

Permalink
1.2.1 (#15)
Browse files Browse the repository at this point in the history
* Version 1.2.0: compatibility with Kotlin 1.1.3 plugins

Fixes #13

* Upgrade ktlint to 0.9.1
  • Loading branch information
jeremymailen authored Aug 5, 2017
1 parent 582eabf commit a104e32
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Available on the Gradle Plugins Portal: https://plugins.gradle.org/plugin/org.jm

```groovy
plugins {
id 'org.jmailen.kotlinter' version '1.2.0'
id 'org.jmailen.kotlinter' version '1.2.1'
}
```

Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.1.2-5'
id 'org.jetbrains.kotlin.jvm' version '1.1.3-2'
id 'com.gradle.plugin-publish' version '0.9.7'
id 'java-gradle-plugin'
id 'maven-publish'
Expand All @@ -12,15 +12,15 @@ repositories {
}

dependencies {
compile 'com.github.shyiko:ktlint:0.9.0'
compileOnly 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.3-2'
compile 'com.github.shyiko:ktlint:0.9.1'
compileOnly 'org.jetbrains.kotlin:kotlin-gradle-plugin'
compileOnly 'com.android.tools.build:gradle:2.3.3'
testCompile 'junit:junit:4.12'
testRuntime 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.3-2'
testRuntime 'org.jetbrains.kotlin:kotlin-gradle-plugin'
testRuntime 'com.android.tools.build:gradle:2.3.3'
}

version = '1.2.0'
version = '1.2.1'
group = 'org.jmailen.gradle'
def pluginId = 'org.jmailen.kotlinter'

Expand Down Expand Up @@ -56,5 +56,5 @@ publishing {
}

task wrapper(type: Wrapper) {
gradleVersion = '4.0'
gradleVersion = '4.0.2'
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Jun 19 19:38:57 PDT 2017
#Fri Aug 04 21:51:37 PDT 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.0.2-bin.zip

0 comments on commit a104e32

Please sign in to comment.