Skip to content

Commit

Permalink
Fix publishing of ZIO 2 module
Browse files Browse the repository at this point in the history
  • Loading branch information
vigoo committed Sep 10, 2021
1 parent 6cd5c98 commit fb2ef64
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ lazy val commonSettings =

lazy val root = Project("clipp", file(".")).settings(commonSettings).settings(
publishArtifact := false
) aggregate(core, zio, catsEffect, catsEffect3)
) aggregate(core, zio, zio2, catsEffect, catsEffect3)

lazy val core = Project("clipp-core", file("clipp-core")).settings(commonSettings).settings(
description := "Clipp core",
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/docs/catseffect.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ title: Cats Effect
To use the Cats-Effect interface add the following dependency:

```scala
libraryDependencies += "io.github.vigoo" %% "clipp-cats-effect" % "0.6.2"
libraryDependencies += "io.github.vigoo" %% "clipp-cats-effect" % "0.6.3"
```

Example:
Expand Down Expand Up @@ -39,7 +39,7 @@ object Test extends IOApp {
To use the Cats-Effect interface add the following dependency:

```scala
libraryDependencies += "io.github.vigoo" %% "clipp-cats-effect3" % "0.6.2"
libraryDependencies += "io.github.vigoo" %% "clipp-cats-effect3" % "0.6.3"
```

Example:
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/docs/zio.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ title: ZIO
To use the ZIO interface add the following dependency:

```scala
libraryDependencies += "io.github.vigoo" %% "clipp-zio" % "0.6.2"
libraryDependencies += "io.github.vigoo" %% "clipp-zio" % "0.6.3"
```

It is possible to directly call the ZIO interface wrapper, for example:
Expand Down Expand Up @@ -82,7 +82,7 @@ ZIO 2 support is currently published separately for snapshot versions of ZIO. On
one clipp-zio artifact maintained.

```scala
libraryDependencies += "io.github.vigoo" %% "clipp-zio-2" % "0.6.2"
libraryDependencies += "io.github.vigoo" %% "clipp-zio-2" % "0.6.3"
```

The only difference currently is that instead of providing the list of arguments as a parameter, Clipp takes it from the
Expand Down

0 comments on commit fb2ef64

Please sign in to comment.