diff --git a/README.md b/README.md index f0a6d2150..1d814e45d 100644 --- a/README.md +++ b/README.md @@ -1 +1,18 @@ +![scala-version][scala-version-badge] +[![Scala CI](https://github.com/lambdaworks/zio-elasticsearch/actions/workflows/ci.yml/badge.svg)](https://github.com/lambdaworks/zio-elasticsearch/actions/workflows/ci.yml) +[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) + # ZIO Elasticsearch +ZIO Elasticsearch is a type-safe, testable and streaming-friendly ZIO native Elasticsearch client. + +Supported by following versions: +- Scala: 2.12+ +- ZIO: 2 +- Elasticsearch: 7 +- JVM 11+ + +# License +[License](LICENSE) + + +[scala-version-badge]: https://img.shields.io/badge/scala-2.13.10-blue?logo=scala&color=red diff --git a/project/BuildHelper.scala b/project/BuildHelper.scala index 897c859f8..0e55c31d3 100644 --- a/project/BuildHelper.scala +++ b/project/BuildHelper.scala @@ -5,7 +5,7 @@ import scalafix.sbt.ScalafixPlugin.autoImport._ object BuildHelper { val Scala212: String = "2.12.16" - val Scala213: String = "2.13.8" + val Scala213: String = "2.13.10" def stdSettings(prjName: String) = List( diff --git a/project/plugins.sbt b/project/plugins.sbt index 5ace8b075..2bccc0767 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.1") -addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6") -addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.3") +addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.4") +addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0") +addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.6") addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")