Skip to content

Commit

Permalink
Add Kafka 3.1.0 version number
Browse files Browse the repository at this point in the history
bai committed Jan 24, 2022

Verified

This commit was signed with the committer’s verified signature.
mrgrain Momo Kornher
1 parent 31d757b commit 0eb0161
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -18,9 +18,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.16.x/1.17.x, and Kafka 2.8.x through 3.0.x, although older releases of
Kafka are still likely to work.
grace period for older releases. However, older releases of Kafka are still likely to work.

Sarama follows semantic versioning and provides API stability via the gopkg.in service.
You can import a version with a guaranteed stable API via http://gopkg.in/Shopify/sarama.v1.
2 changes: 1 addition & 1 deletion dev.yml
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ name: sarama

up:
- go:
version: '1.17.1'
version: '1.17.6'

commands:
test:
4 changes: 3 additions & 1 deletion utils.go
Original file line number Diff line number Diff line change
@@ -178,6 +178,7 @@ var (
V2_8_0_0 = newKafkaVersion(2, 8, 0, 0)
V2_8_1_0 = newKafkaVersion(2, 8, 1, 0)
V3_0_0_0 = newKafkaVersion(3, 0, 0, 0)
V3_1_0_0 = newKafkaVersion(3, 1, 0, 0)

SupportedVersions = []KafkaVersion{
V0_8_2_0,
@@ -221,9 +222,10 @@ var (
V2_8_0_0,
V2_8_1_0,
V3_0_0_0,
V3_1_0_0,
}
MinVersion = V0_8_2_0
MaxVersion = V3_0_0_0
MaxVersion = V3_1_0_0
DefaultVersion = V1_0_0_0
)

0 comments on commit 0eb0161

Please sign in to comment.