Skip to content

Commit

Permalink
Bump to 0.11.5 (#535)
Browse files Browse the repository at this point in the history
* [build] Fix 'params' cannot be negated in scala 2.12

As per scala/bug#10572
change
-Ywarn-unused:-params
into
-Ywarn-unused:-explicits,-implicits

* Bump to 0.11.5 (#534)

Co-authored-by: Jon Alberdi <[email protected]>
  • Loading branch information
yetanotherion and Jon Alberdi authored Apr 14, 2020
1 parent 3d6c474 commit 47f5c7b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 47f5c7b

Please sign in to comment.