diff --git a/README.md b/README.md index 1532071..9332b7f 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ If you do not like your Play app to depend on any sbt plugin, [play-gulp-standal ## Change logs [Sonatype Releases](https://oss.sonatype.org/#nexus-search;quick~play gulp) -* v0.1.4 Fixed gulp.js resolution error on Windows. +* v0.1.5 Fixed gulp.js resolution error on Windows. * v0.1.3 Reworked the devAssetHandler so that it no longer returns a Content-Disposition header. Kudos to @jeantil for the pull request [#22](/sbt-play-gulp/pull/22), [#23](/sbt-play-gulp/pull/23). Added the [`yarn`](https://github.com/yarnpkg/yarn) command. (You can run the yarn package manager in the `/ui` directory from inside the sbt console.) * v0.1.2 Added better gulp detection mechanism and a mitigating lock on hooks. Thanks @mriehl for the pull requests #17 and #18. @@ -59,7 +59,7 @@ This plugin is assumed to be mainly for those who have been familiar with Gulp a ``` addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.5.10") - addSbtPlugin("com.github.mmizutani" % "sbt-play-gulp" % "0.1.4") + addSbtPlugin("com.github.mmizutani" % "sbt-play-gulp" % "0.1.5") ``` 4. Add settings specific to the sbt-play-gulp plugin in build.sbt: diff --git a/samples/play-gulp-angular/project/plugins.sbt b/samples/play-gulp-angular/project/plugins.sbt index c2b14b7..b79bed0 100644 --- a/samples/play-gulp-angular/project/plugins.sbt +++ b/samples/play-gulp-angular/project/plugins.sbt @@ -14,4 +14,4 @@ addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.5.10") //) // Import the plugin of this repository -addSbtPlugin("com.github.mmizutani" % "sbt-play-gulp" % "0.1.4") +addSbtPlugin("com.github.mmizutani" % "sbt-play-gulp" % "0.1.5") diff --git a/samples/play-gulp-react/project/plugins.sbt b/samples/play-gulp-react/project/plugins.sbt index c529159..1e22f91 100644 --- a/samples/play-gulp-react/project/plugins.sbt +++ b/samples/play-gulp-react/project/plugins.sbt @@ -14,4 +14,4 @@ addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.5.10") //) // Import the plugin of this repository -addSbtPlugin("com.github.mmizutani" % "sbt-play-gulp" % "0.1.4") \ No newline at end of file +addSbtPlugin("com.github.mmizutani" % "sbt-play-gulp" % "0.1.5") \ No newline at end of file diff --git a/src/main/scala/com/github/mmizutani/sbt/gulp/PlayGulpPlugin.scala b/src/main/scala/com/github/mmizutani/sbt/gulp/PlayGulpPlugin.scala index 584f1de..bd2894d 100644 --- a/src/main/scala/com/github/mmizutani/sbt/gulp/PlayGulpPlugin.scala +++ b/src/main/scala/com/github/mmizutani/sbt/gulp/PlayGulpPlugin.scala @@ -42,7 +42,7 @@ object PlayGulpPlugin extends AutoPlugin { * Main plugin settings which add gulp commands to sbt tasks */ lazy val playGulpSettings: Seq[Def.Setting[_]] = Seq( - libraryDependencies += "com.github.mmizutani" %% "play-gulp" % "0.1.4" exclude("com.typesafe.play", "play"), + libraryDependencies += "com.github.mmizutani" %% "play-gulp" % "0.1.5" exclude("com.typesafe.play", "play"), // Path of the frontend project root gulpDirectory <<= (baseDirectory in Compile) { diff --git a/version.sbt b/version.sbt index a4fc0db..52cfe90 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "0.1.4" +version in ThisBuild := "0.1.5"