From 47f5c7b8a89cc0a555a64d333e214ad670685e91 Mon Sep 17 00:00:00 2001 From: Ion Alberdi Date: Tue, 14 Apr 2020 16:13:47 +0200 Subject: [PATCH] Bump to 0.11.5 (#535) * [build] Fix 'params' cannot be negated in scala 2.12 As per https://github.com/scala/bug/issues/10572 change -Ywarn-unused:-params into -Ywarn-unused:-explicits,-implicits * Bump to 0.11.5 (#534) Co-authored-by: Jon Alberdi --- README.md | 6 +++--- build.sbt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 44118df91..138713d57 100644 --- a/README.md +++ b/README.md @@ -72,11 +72,11 @@ 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.11.4"`. +The core module to use is `"com.criteo.cuttle" %% "cuttle" % "0.11.5"`. You also need to fetch one __Scheduler__ implementation: -- __TimeSeries__: `"com.criteo.cuttle" %% "timeseries" % "0.11.4""`. -- __Cron__: `"com.criteo.cuttle" %% "cron" % "0.11.4""`. +- __TimeSeries__: `"com.criteo.cuttle" %% "timeseries" % "0.11.5""`. +- __Cron__: `"com.criteo.cuttle" %% "cron" % "0.11.5""`. # License diff --git a/build.sbt b/build.sbt index 2e46ddbab..cebec43dd 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.11.4" +val VERSION = "0.11.5" lazy val catsCore = "1.6.1" lazy val circe = "0.11.1"