diff --git a/README.md b/README.md index b007b88..1194a09 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ https://github.com/stijndehaes/play-prometheus-filters-example-app To use the library add the following to you build.sbt: ```scala -libraryDependencies += "com.github.stijndehaes" %% "play-prometheus-filters" % "0.4.0" +libraryDependencies += "com.github.stijndehaes" %% "play-prometheus-filters" % "0.5.0" ``` This version only supports play 2.6. @@ -27,6 +27,7 @@ For more info on play version compatibility see the releases matrix. | 0.2.x | 2.5.x | | 0.3.x | 2.6.x | | 0.4.x | 2.6.x | +| 0.5.x | 2.7.x | ## The filters diff --git a/build.sbt b/build.sbt index b1fd9df..b21fd1d 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ name := "play-prometheus-filters" organization := "com.github.stijndehaes" -version := "0.4.0" +version := "0.5.0" lazy val root = (project in file(".")) .enablePlugins(PlayScala) @@ -37,15 +37,15 @@ lazy val root = (project in file(".")) ) -scalaVersion := "2.12.6" +scalaVersion := "2.12.8" crossScalaVersions := Seq(scalaVersion.value, "2.11.12") libraryDependencies ++= Seq( guice, - "io.prometheus" % "simpleclient" % "0.5.0", - "io.prometheus" % "simpleclient_hotspot" % "0.5.0", - "io.prometheus" % "simpleclient_servlet" % "0.5.0" + "io.prometheus" % "simpleclient" % "0.6.0", + "io.prometheus" % "simpleclient_hotspot" % "0.6.0", + "io.prometheus" % "simpleclient_servlet" % "0.6.0" ) libraryDependencies ++= Seq(