Skip to content

Commit

Permalink
0.8 release, upgrade to Kafka 2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
simplesteph committed Jan 10, 2020
1 parent f7ad667 commit 54da934
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

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

## [0.7 - 24/07/2019]
- Kafka 2.1.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ TODO: Mention to look for inter broker protocol version before doing this

KSM Version | Kafka Version | Notes
--- | --- | ---
0.8-SNAPSHOT | 2.1.1 |
0.8 | 2.3.1 | Add a "run once" mode
0.7 | 2.1.1 | Kafka Based ACL refresher available (no zookeeper dependency)
0.6 | 2.0.0 | important stability fixes - please update
0.5 | 2.0.0 |
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ resolvers ++= Seq(

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

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

// test
"org.scalatest" %% "scalatest" % "3.0.5" % Test,
Expand Down

0 comments on commit 54da934

Please sign in to comment.