Skip to content
This repository was archived by the owner on May 25, 2023. It is now read-only.

Commit 604555e

Browse files
committed
Update README with proper version info and link to apidocs
1 parent 74aabcd commit 604555e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

‎README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,24 @@ The design of the library was inspired by the work started by Alexis Seigneurin
1515
`kafka-streams-scala` is published and cross-built for Scala `2.11`, and `2.12`, so you can just add the following to your build:
1616

1717
```scala
18-
val kafka_streams_scala_version = "0.1.2"
18+
val kafka_streams_scala_version = "0.2.0"
1919

2020
libraryDependencies ++= Seq("com.lightbend" %%
2121
"kafka-streams-scala" % kafka_streams_scala_version)
2222
```
2323

2424
> Note: `kafka-streams-scala` supports onwards Kafka Streams `1.0.0`.
2525
26-
The API docs for `kafka-streams-scala` is available [here](https://developer.lightbend.com/docs/api/kafka-streams-scala/0.1.2/com/lightbend/kafka/scala/streams) for Scala 2.12 and [here](https://developer.lightbend.com/docs/api/kafka-streams-scala_2.11/0.1.2/#package) for Scala 2.11.
26+
The API docs for `kafka-streams-scala` is available [here](https://developer.lightbend.com/docs/api/kafka-streams-scala/0.2.0/com/lightbend/kafka/scala/streams) for Scala 2.12 and [here](https://developer.lightbend.com/docs/api/kafka-streams-scala_2.11/0.2.0/#package) for Scala 2.11.
2727

2828
## Running the Tests
2929

3030
The library comes with an embedded Kafka server. To run the tests, simply run `sbt testOnly` and all tests will run on the local embedded server.
3131

32-
> The embedded server is started and stopped for every test and takes quite a bit of resources. Hence it's recommended that you allocate more heap space to `sbt` when running the tests. e.g. `sbt -mem 1500`.
32+
> The embedded server is started and stopped for every test and takes quite a bit of resources. Hence it's recommended that you allocate more heap space to `sbt` when running the tests. e.g. `sbt -mem 2000`.
3333
3434
```bash
35-
$ sbt -mem 1500
35+
$ sbt -mem 2000
3636
> +clean
3737
> +test
3838
```
@@ -135,4 +135,4 @@ val clicksPerRegion: KTableS[String, Long] =
135135

136136
// Write the (continuously updating) results to the output topic.
137137
clicksPerRegion.toStream.to(outputTopic)
138-
```
138+
```

‎build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name := "kafka-streams-scala"
44

55
organization := "com.lightbend"
66

7-
version := "0.1.2"
7+
version := "0.2.0"
88

99
scalaVersion := Versions.Scala_2_12_Version
1010

@@ -55,4 +55,4 @@ publishTo := {
5555

5656
publishMavenStyle := true
5757

58-
publishArtifact in Test := false
58+
publishArtifact in Test := true

0 commit comments

Comments
 (0)