Skip to content

Commit

Permalink
Merge pull request #2119 from Shopify/kafka310
Browse files Browse the repository at this point in the history
Add Kafka 3.1.0 version number
  • Loading branch information
bai authored Jan 24, 2022
2 parents 31d757b + 0eb0161 commit 0e6579f
Show file tree
Hide file tree
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
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: sarama

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

commands:
test:
Expand Down
4 changes: 3 additions & 1 deletion utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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
)

Expand Down

0 comments on commit 0e6579f

Please sign in to comment.