Skip to content

Commit

Permalink
Merge pull request IBM#1073 from bai/kafka110
Browse files Browse the repository at this point in the history
Add support for Kafka 1.1.0
  • Loading branch information
eapache committed Apr 2, 2018
2 parents c1ec7c5 + 5a0b61f commit d49f403
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ env:
matrix:
- KAFKA_VERSION=0.11.0.2
- KAFKA_VERSION=1.0.0
- KAFKA_VERSION=1.1.0

before_install:
- export REPOSITORY_ROOT=${TRAVIS_BUILD_DIR}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ You might also want to look at the [Frequently Asked Questions](https://github.c
Sarama provides a "2 releases + 2 months" compatibility guarantee: we support
the two latest stable releases of Kafka and Go, and we provide a two month
grace period for older releases. This means we currently officially support
Go 1.8 through 1.10, and Kafka 0.11 through 1.0, although older releases are
Go 1.8 through 1.10, and Kafka 0.11 through 1.1, although older releases are
still likely to work.

Sarama follows semantic versioning and provides API stability via the gopkg.in service.
Expand Down
4 changes: 3 additions & 1 deletion utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ var (
V0_11_0_1 = newKafkaVersion(0, 11, 0, 1)
V0_11_0_2 = newKafkaVersion(0, 11, 0, 2)
V1_0_0_0 = newKafkaVersion(1, 0, 0, 0)
V1_1_0_0 = newKafkaVersion(1, 1, 0, 0)

SupportedVersions = []KafkaVersion{
V0_8_2_0,
Expand All @@ -171,9 +172,10 @@ var (
V0_11_0_1,
V0_11_0_2,
V1_0_0_0,
V1_1_0_0,
}
MinVersion = V0_8_2_0
MaxVersion = V1_0_0_0
MaxVersion = V1_1_0_0
)

func ParseKafkaVersion(s string) (KafkaVersion, error) {
Expand Down

0 comments on commit d49f403

Please sign in to comment.