Skip to content

Commit

Permalink
Merge branch 'master' into separate-rebalance-listener-file
Browse files Browse the repository at this point in the history
  • Loading branch information
svroonland authored Nov 13, 2024
2 parents e86d757 + 5a147f8 commit ea59926
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Kafka has a mature Java client for producing and consuming events, but it has a
In order to use this library, we need to add the following line in our `build.sbt` file:

```scala
libraryDependencies += "dev.zio" %% "zio-kafka" % "2.8.3"
libraryDependencies += "dev.zio" %% "zio-kafka-testkit" % "2.8.3" % Test
libraryDependencies += "dev.zio" %% "zio-kafka" % "2.9.0"
libraryDependencies += "dev.zio" %% "zio-kafka-testkit" % "2.9.0" % Test
```

Snapshots are available on Sonatype's snapshot repository https://oss.sonatype.org/content/repositories/snapshots.
Expand Down
2 changes: 2 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ lazy val binCompatVersionToCompare =
.map(_.strip())
// Only continue when we're building from a release tag
.filter(_.matches("v[0-9]+\\.[0-9]+\\.[0-9]+"))
// Do not continue when this is a new minor version (when patch version is set to "0")
.filterNot(_.endsWith(".0"))
.map { tag =>
// Remove `v` and set patch version to `0`
val compatVersion = tag.stripPrefix("v").split('.').take(2).mkString(".") + ".0"
Expand Down

0 comments on commit ea59926

Please sign in to comment.