Skip to content

Commit 1680c71

Browse files
committed
librdkafka and confluent-kafka-go v2.10.1
1 parent 2a1cfe5 commit 1680c71

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

.semaphore/semaphore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ agent:
66
global_job_config:
77
env_vars:
88
- name: LIBRDKAFKA_VERSION
9-
value: v2.10.1-RC1
9+
value: v2.10.1
1010
prologue:
1111
commands:
1212
- checkout

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ for use with [Confluent Cloud](https://www.confluent.io/confluent-cloud/).
137137
Getting Started
138138
===============
139139

140-
Supports Go 1.17+ and librdkafka 2.10.0+.
140+
Supports Go 1.17+ and librdkafka 2.10.1+.
141141

142142
Using Go Modules
143143
----------------

examples/docker_aws_lambda_example/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module docker_example
22

33
require (
44
github.com/aws/aws-lambda-go v1.27.0
5-
github.com/confluentinc/confluent-kafka-go/v2 v2.10.1-RC1
5+
github.com/confluentinc/confluent-kafka-go/v2 v2.10.1
66
)
77

88
go 1.21

examples/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ replace github.com/confluentinc/confluent-kafka-go/v2 => ../
99
require (
1010
github.com/actgardner/gogen-avro/v10 v10.2.1
1111
github.com/alecthomas/kingpin v2.2.6+incompatible
12-
github.com/confluentinc/confluent-kafka-go/v2 v2.10.1-RC1
12+
github.com/confluentinc/confluent-kafka-go/v2 v2.10.1
1313
github.com/gdamore/tcell v1.4.0
1414
google.golang.org/protobuf v1.33.0
1515
)

kafka/00version.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,19 @@ import (
2929
//defines and strings in sync.
3030
//
3131
32-
#define MIN_RD_KAFKA_VERSION 0x020a0000
32+
#define MIN_RD_KAFKA_VERSION 0x020a0100
3333
3434
#ifdef __APPLE__
35-
#define MIN_VER_ERRSTR "confluent-kafka-go requires librdkafka v2.10.0 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
35+
#define MIN_VER_ERRSTR "confluent-kafka-go requires librdkafka v2.10.1 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
3636
#else
37-
#define MIN_VER_ERRSTR "confluent-kafka-go requires librdkafka v2.10.0 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
37+
#define MIN_VER_ERRSTR "confluent-kafka-go requires librdkafka v2.10.1 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
3838
#endif
3939
4040
#if RD_KAFKA_VERSION < MIN_RD_KAFKA_VERSION
4141
#ifdef __APPLE__
42-
#error "confluent-kafka-go requires librdkafka v2.10.0 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
42+
#error "confluent-kafka-go requires librdkafka v2.10.1 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
4343
#else
44-
#error "confluent-kafka-go requires librdkafka v2.10.0 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
44+
#error "confluent-kafka-go requires librdkafka v2.10.1 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
4545
#endif
4646
#endif
4747
*/

kafkatest/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ replace github.com/confluentinc/confluent-kafka-go/v2 => ../
88

99
require (
1010
github.com/alecthomas/kingpin v2.2.6+incompatible
11-
github.com/confluentinc/confluent-kafka-go/v2 v2.10.1-RC1
11+
github.com/confluentinc/confluent-kafka-go/v2 v2.10.1
1212
)
1313

1414
require (

mk/doc-gen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def convert_path(url, base_url, after):
2424
sys.exit(1)
2525
package = sys.argv[1]
2626

27-
tag = "v2.10.1-RC1"
27+
tag = "v2.10.1"
2828
major = tag.split(".")[0] # e.g. v2
2929
base_css = "https://go.dev/css"
3030
base_js = "https://go.dev/js"

soaktest/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ replace github.com/confluentinc/confluent-kafka-go/v2 => ../
88

99
require (
1010
github.com/DataDog/datadog-go v4.8.3+incompatible
11-
github.com/confluentinc/confluent-kafka-go/v2 v2.10.1-RC1
11+
github.com/confluentinc/confluent-kafka-go/v2 v2.10.1
1212
github.com/shirou/gopsutil v3.21.11+incompatible
1313
)
1414

0 commit comments

Comments
 (0)