Skip to content

Commit d6f3725

Browse files
emasabMSeal
andauthored
2.12.1rc1 (confluentinc#2110)
Co-authored-by: Matthew Seal <[email protected]>
1 parent babdf32 commit d6f3725

File tree

5 files changed

+18
-11
lines changed

5 files changed

+18
-11
lines changed

.semaphore/semaphore.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ execution_time_limit:
88
global_job_config:
99
env_vars:
1010
- name: LIBRDKAFKA_VERSION
11-
value: v2.12.0
11+
value: v2.12.1-RC1
1212
prologue:
1313
commands:
1414
- checkout
@@ -50,7 +50,7 @@ blocks:
5050
- name: CIBW_SKIP
5151
value: cp36-* cp37-* cp38-* cp39-* cp310-* cp311-* cp312-*
5252
- name: CIBW_ENVIRONMENT_MACOS
53-
value: MACOSX_DEPLOYMENT_TARGET=15
53+
value: MACOSX_DEPLOYMENT_TARGET=13
5454
jobs:
5555
- name: Build
5656
commands:
@@ -98,7 +98,7 @@ blocks:
9898
- name: CIBW_SKIP
9999
value: cp38-* cp39-* cp310-* cp311-* cp312-*
100100
- name: CIBW_ENVIRONMENT_MACOS
101-
value: MACOSX_DEPLOYMENT_TARGET=15
101+
value: MACOSX_DEPLOYMENT_TARGET=13
102102
jobs:
103103
- name: Build
104104
commands:

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Confluent Python Client for Apache Kafka - CHANGELOG
22

3+
## v2.12.1 - release candidate
4+
5+
v2.12.1 is a maintenance release with the following fixes:
6+
7+
- restored macOS binaries compatibility with macOS 13
8+
9+
310
## v2.12.0 - 2025-10-09
411

512
v2.12.0 is a feature release with the following enhancements:

examples/docker/Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ FROM alpine:3.12
3030

3131
COPY . /usr/src/confluent-kafka-python
3232

33-
ENV LIBRDKAFKA_VERSION="v2.12.0"
33+
ENV LIBRDKAFKA_VERSION="v2.12.1-RC1"
3434
ENV KCAT_VERSION="master"
3535
ENV CKP_VERSION="master"
3636

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "confluent-kafka"
7-
version = "2.12.0"
7+
version = "2.12.1rc1"
88
description = "Confluent's Python client for Apache Kafka"
99
classifiers = [
1010
"Development Status :: 5 - Production/Stable",

src/confluent_kafka/src/confluent_kafka.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,27 +38,27 @@
3838
/**
3939
* @brief confluent-kafka-python version, must match that of pyproject.toml.
4040
*/
41-
#define CFL_VERSION_STR "2.12.0"
41+
#define CFL_VERSION_STR "2.12.1rc1"
4242

4343
/**
4444
* Minimum required librdkafka version. This is checked both during
4545
* build-time (just below) and runtime (see confluent_kafka.c).
4646
* Make sure to keep the MIN_RD_KAFKA_VERSION, MIN_VER_ERRSTR and #error
4747
* defines and strings in sync.
4848
*/
49-
#define MIN_RD_KAFKA_VERSION 0x020c00ff
49+
#define MIN_RD_KAFKA_VERSION 0x020c01ff
5050

5151
#ifdef __APPLE__
52-
#define MIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.12.0 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
52+
#define MIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.12.1 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
5353
#else
54-
#define MIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.12.0 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
54+
#define MIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.12.1 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
5555
#endif
5656

5757
#if RD_KAFKA_VERSION < MIN_RD_KAFKA_VERSION
5858
#ifdef __APPLE__
59-
#error "confluent-kafka-python requires librdkafka v2.12.0 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
59+
#error "confluent-kafka-python requires librdkafka v2.12.1 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
6060
#else
61-
#error "confluent-kafka-python requires librdkafka v2.12.0 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
61+
#error "confluent-kafka-python requires librdkafka v2.12.1 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
6262
#endif
6363
#endif
6464

0 commit comments

Comments
 (0)