From 2edf8241e112efc6ea8d8651b7184ddffc135e98 Mon Sep 17 00:00:00 2001 From: Vincent Guerci Date: Wed, 26 Sep 2018 15:38:31 +0200 Subject: [PATCH] Version 0.4.1 --- README.md | 4 ++-- build.sbt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 00424eade..29bdb1b20 100644 --- a/README.md +++ b/README.md @@ -74,10 +74,10 @@ To run the example application, checkout the repository, launch the [sbt](http:/ The library is cross-built for __Scala 2.11__ and __Scala 2.12__. -The core module to use is `"com.criteo.cuttle" %% "cuttle" % "0.4.0"`. +The core module to use is `"com.criteo.cuttle" %% "cuttle" % "0.4.1"`. You also need to fetch one __Scheduler__ implementation: -- __TimeSeries__: `"com.criteo.cuttle" %% "timeseries" % "0.4.0"`. +- __TimeSeries__: `"com.criteo.cuttle" %% "timeseries" % "0.4.1"`. # License diff --git a/build.sbt b/build.sbt index 4685ef1c3..f3a086c6d 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ val devMode = settingKey[Boolean]("Some build optimization are applied in devMode.") val writeClasspath = taskKey[File]("Write the project classpath to a file.") -val VERSION = "0.4.0" +val VERSION = "0.4.1" lazy val commonSettings = Seq( organization := "com.criteo.cuttle", @@ -239,7 +239,7 @@ lazy val timeseries = } logger.out("Running webpack...") assert(s"node node_modules/webpack/bin/webpack.js --output-path $webpackOutputDir --bail" ! logger == 0, - "webpack failed") + "webpack failed") listFiles(webpackOutputDir) } }.taskValue,