Skip to content
This repository has been archived by the owner on Apr 26, 2023. It is now read-only.

Commit

Permalink
Bump up version to 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mmizutani committed Dec 25, 2016
1 parent 963f9aa commit babc74a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion samples/play-gulp-angular/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
2 changes: 1 addition & 1 deletion samples/play-gulp-react/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.1.4"
version in ThisBuild := "0.1.5"

0 comments on commit babc74a

Please sign in to comment.