Skip to content

Commit

Permalink
fix: permit version 4.0.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Dominic Evans <[email protected]>
  • Loading branch information
dnwe committed Dec 23, 2024
1 parent 89eb58f commit dea7d4a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ var (
V3_8_0_0 = newKafkaVersion(3, 8, 0, 0)
V3_8_1_0 = newKafkaVersion(3, 8, 1, 0)
V3_9_0_0 = newKafkaVersion(3, 9, 0, 0)
V4_0_0_0 = newKafkaVersion(4, 0, 0, 0)

SupportedVersions = []KafkaVersion{
V0_8_2_0,
Expand Down Expand Up @@ -277,9 +278,10 @@ var (
V3_8_0_0,
V3_8_1_0,
V3_9_0_0,
V4_0_0_0,
}
MinVersion = V0_8_2_0
MaxVersion = V3_9_0_0
MaxVersion = V4_0_0_0
DefaultVersion = V2_1_0_0

// reduced set of protocol versions to matrix test
Expand Down

0 comments on commit dea7d4a

Please sign in to comment.