diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f37ac8d..ba96900 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -3,3 +3,4 @@ * Hamidreza Afzali * Jendrik Poloczek * Svend Vanderveken +* Daniel Wojda diff --git a/README.md b/README.md index 801783e..c535402 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![codecov](https://codecov.io/gh/jpzk/mockedstreams/branch/master/graph/badge.svg)](https://codecov.io/gh/jpzk/mockedstreams) [![License](http://img.shields.io/:license-Apache%202-grey.svg)](http://www.apache.org/licenses/LICENSE-2.0.txt) [![GitHub stars](https://img.shields.io/github/stars/jpzk/mockedstreams.svg?style=flat)](https://github.com/jpzk/mockedstreams/stargazers) -Mocked Streams 1.6.0 [(git)](https://github.com/jpzk/mockedstreams) is a library for Scala 2.11 and 2.12 which allows you to **unit-test processing topologies** of [Kafka Streams](https://kafka.apache.org/documentation#streams) applications (since Apache Kafka >=0.10.1) **without Zookeeper and Kafka Brokers**. Further, you can use your favourite Scala testing framework e.g. [ScalaTest](http://www.scalatest.org/) and [Specs2](https://etorreborre.github.io/specs2/). Mocked Streams is located at the Maven Central Repository, therefore you just have to add the following to your [SBT dependencies](http://www.scala-sbt.org/0.13/docs/Library-Dependencies.html): +Mocked Streams 1.7.0 [(git)](https://github.com/jpzk/mockedstreams) is a library for Scala 2.11 and 2.12 which allows you to **unit-test processing topologies** of [Kafka Streams](https://kafka.apache.org/documentation#streams) applications (since Apache Kafka >=0.10.1) **without Zookeeper and Kafka Brokers**. Further, you can use your favourite Scala testing framework e.g. [ScalaTest](http://www.scalatest.org/) and [Specs2](https://etorreborre.github.io/specs2/). Mocked Streams is located at the Maven Central Repository, therefore you just have to add the following to your [SBT dependencies](http://www.scala-sbt.org/0.13/docs/Library-Dependencies.html): libraryDependencies += "com.madewithtea" %% "mockedstreams" % "1.6.0" % "test" @@ -12,6 +12,7 @@ Mocked Streams 1.6.0 [(git)](https://github.com/jpzk/mockedstreams) is a library | Mocked Streams Version | Apache Kafka Version | |------------- |-------------| +| 1.7.0 | 1.1.0.0 | | 1.6.0 | 1.0.1.0 | | 1.5.0 | 1.0.0.0 | | 1.4.0 | 0.11.0.1 | diff --git a/build.sbt b/build.sbt index 3b22419..599dd5a 100644 --- a/build.sbt +++ b/build.sbt @@ -1,14 +1,14 @@ lazy val commonSettings = Seq( organization := "com.madewithtea", - version := "1.6.0", - scalaVersion := "2.12.4", - crossScalaVersions := Seq("2.12.4","2.11.11"), + version := "1.7.0", + scalaVersion := "2.12.6", + crossScalaVersions := Seq("2.12.6","2.11.12"), description := "Topology Unit-Testing Library for Apache Kafka / Kafka Streams", organizationHomepage := Some(url("https://www.madewithtea.com")), scalacOptions := Seq("-Xexperimental")) -val scalaTestVersion = "3.0.4" +val scalaTestVersion = "3.0.5" val rocksDBVersion = "5.7.3" val kafkaVersion = "1.1.0"