diff --git a/README.md b/README.md index 756f6aa..c847c53 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ If you find Phobos useful, please consider giving it a star! ⭐ Add phobos-core to your dependencies: ``` -libraryDependencies += "dev.valentiay" %% "phobos-core" % "0.27.0" +libraryDependencies += "dev.valentiay" %% "phobos-core" % "0.28.0" ``` Then try this code out in `sbt console` or in a separate source file: @@ -67,7 +67,7 @@ Performance details can be found out in [phobos-benchmark repository](https://gi There are several additional modules for some specific cases. These modules could be added with command below: ``` -libraryDependencies += "dev.valentiay" %% "phobos-" % "0.27.0" +libraryDependencies += "dev.valentiay" %% "phobos-" % "0.28.0" ``` Where `` is module name. diff --git a/build.sbt b/build.sbt index 6d75053..3bdbec0 100644 --- a/build.sbt +++ b/build.sbt @@ -85,7 +85,7 @@ lazy val `ast` = .settings( commonDependencies, libraryDependencies ++= Seq( - "org.scalacheck" %% "scalacheck" % "1.18.1" % "test", + "org.scalacheck" %% "scalacheck" % "1.19.0" % "test", "com.softwaremill.diffx" %% "diffx-scalatest-should" % "0.9.0" % "test", "org.typelevel" %% "cats-core" % "2.13.0", ), diff --git a/publish.sbt b/publish.sbt index 82a1812..79e09fc 100644 --- a/publish.sbt +++ b/publish.sbt @@ -1,7 +1,7 @@ import Publish._ import xerial.sbt.Sonatype.sonatypeCentralHost -publishVersion := "0.27.0" +publishVersion := "0.28.0" ThisBuild / versionScheme := Some("early-semver") ThisBuild / organization := "dev.valentiay"