Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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-<module>" % "0.27.0"
libraryDependencies += "dev.valentiay" %% "phobos-<module>" % "0.28.0"
```
Where `<module>` is module name.

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