Skip to content

Commit

Permalink
Bump version to 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ksoichiro committed Feb 24, 2016
1 parent c09d70a commit c5d282c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Apply plugin in build.gradle:
```gradle
// Gradle 2.1+
plugins {
id 'com.github.ksoichiro.web.resource' version '1.4.0'
id 'com.github.ksoichiro.web.resource' version '1.5.0'
}
// Gradle 2.0 and former
Expand All @@ -27,7 +27,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.github.ksoichiro:gradle-web-resource-plugin:1.4.0'
classpath 'com.github.ksoichiro:gradle-web-resource-plugin:1.5.0'
}
}
Expand All @@ -42,7 +42,7 @@ buildscript {
}
}
dependencies {
classpath 'com.github.ksoichiro:gradle-web-resource-plugin:1.5.0-SNAPSHOT'
classpath 'com.github.ksoichiro:gradle-web-resource-plugin:1.5.1-SNAPSHOT'
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
GRADLE_VERSION=2.8

VERSION_NAME=1.5.0-SNAPSHOT
VERSION_NAME=1.5.0
GROUP=com.github.ksoichiro
POM_ARTIFACT_ID=gradle-web-resource-plugin

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import org.gradle.util.ConfigureUtil
@ToString
class WebResourceExtension {
static final String NAME = 'webResource'
static final String VERSION = '1.4.0'
static final String VERSION = '1.5.0'
static final String PLUGIN_DIR_NAME = 'webResource'

Project project
Expand Down
2 changes: 1 addition & 1 deletion samples/example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ buildscript {
// If you use the released version, use plugins closure and
// comment out buildscript closure and apply plugin statement.
//plugins {
// id 'com.github.ksoichiro.web.resource' version '1.4.0'
// id 'com.github.ksoichiro.web.resource' version '1.5.0'
//}

apply plugin: 'java'
Expand Down

0 comments on commit c5d282c

Please sign in to comment.