File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed 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
18
18
19
19
Sarama provides a "2 releases + 2 months" compatibility guarantee: we support
20
20
the two latest stable releases of Kafka and Go, and we provide a two month
21
- grace period for older releases. This means we currently officially support
22
- Go 1.16.x/1.17.x, and Kafka 2.8.x through 3.0.x, although older releases of
23
- Kafka are still likely to work.
21
+ grace period for older releases. However, older releases of Kafka are still likely to work.
24
22
25
23
Sarama follows semantic versioning and provides API stability via the gopkg.in service.
26
24
You can import a version with a guaranteed stable API via http://gopkg.in/Shopify/sarama.v1 .
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: sarama
2
2
3
3
up :
4
4
- go :
5
- version : ' 1.17.1 '
5
+ version : ' 1.17.6 '
6
6
7
7
commands :
8
8
test :
Original file line number Diff line number Diff line change @@ -178,6 +178,7 @@ var (
178
178
V2_8_0_0 = newKafkaVersion (2 , 8 , 0 , 0 )
179
179
V2_8_1_0 = newKafkaVersion (2 , 8 , 1 , 0 )
180
180
V3_0_0_0 = newKafkaVersion (3 , 0 , 0 , 0 )
181
+ V3_1_0_0 = newKafkaVersion (3 , 1 , 0 , 0 )
181
182
182
183
SupportedVersions = []KafkaVersion {
183
184
V0_8_2_0 ,
@@ -221,9 +222,10 @@ var (
221
222
V2_8_0_0 ,
222
223
V2_8_1_0 ,
223
224
V3_0_0_0 ,
225
+ V3_1_0_0 ,
224
226
}
225
227
MinVersion = V0_8_2_0
226
- MaxVersion = V3_0_0_0
228
+ MaxVersion = V3_1_0_0
227
229
DefaultVersion = V1_0_0_0
228
230
)
229
231
You can’t perform that action at this time.
0 commit comments