Skip to content

Commit 54da934

Browse files
committed
0.8 release, upgrade to Kafka 2.3.1
1 parent f7ad667 commit 54da934

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## [0.8-SNAPSHOT]
7+
## [0.8 - 10/01/2020]
88
- Added possibility to run AclSyncornizer just once and then stop KSM (Issue #56)
9+
- Updated to Kafka 2.3.1
910

1011
## [0.7 - 24/07/2019]
1112
- Kafka 2.1.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ TODO: Mention to look for inter broker protocol version before doing this
216216

217217
KSM Version | Kafka Version | Notes
218218
--- | --- | ---
219-
0.8-SNAPSHOT | 2.1.1 |
219+
0.8 | 2.3.1 | Add a "run once" mode
220220
0.7 | 2.1.1 | Kafka Based ACL refresher available (no zookeeper dependency)
221221
0.6 | 2.0.0 | important stability fixes - please update
222222
0.5 | 2.0.0 |

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ resolvers ++= Seq(
1919

2020
libraryDependencies ++= Seq(
2121
// kafka
22-
"org.apache.kafka" %% "kafka" % "2.1.1",
23-
"io.github.embeddedkafka" %% "embedded-kafka" % "2.1.1" % "test",
22+
"org.apache.kafka" %% "kafka" % "2.3.1",
23+
"io.github.embeddedkafka" %% "embedded-kafka" % "2.3.1" % "test",
2424

25-
"org.apache.kafka" % "kafka-clients" % "2.1.1", // needed explicitly for proper classPath
26-
"org.apache.kafka" % "kafka-clients" % "2.1.1" % Test classifier "test",
25+
"org.apache.kafka" % "kafka-clients" % "2.3.1", // needed explicitly for proper classPath
26+
"org.apache.kafka" % "kafka-clients" % "2.3.1" % Test classifier "test",
2727

2828
// test
2929
"org.scalatest" %% "scalatest" % "3.0.5" % Test,

0 commit comments

Comments
 (0)