Skip to content

Commit caca3cd

Browse files
authored
2.12.1 (#2112)
1 parent bba7d04 commit caca3cd

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.semaphore/semaphore.yml

Lines changed: 1 addition & 1 deletion
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.1-RC1
11+
value: v2.12.1
1212
prologue:
1313
commands:
1414
- checkout

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Confluent Python Client for Apache Kafka - CHANGELOG
22

3-
## v2.12.1 - release candidate
3+
## v2.12.1 - 2025-10-21
44

55
v2.12.1 is a maintenance release with the following fixes:
66

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.1-RC1"
33+
ENV LIBRDKAFKA_VERSION="v2.12.1"
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.1rc1"
7+
version = "2.12.1"
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
/**
3939
* @brief confluent-kafka-python version, must match that of pyproject.toml.
4040
*/
41-
#define CFL_VERSION_STR "2.12.1rc1"
41+
#define CFL_VERSION_STR "2.12.1"
4242

4343
/**
4444
* Minimum required librdkafka version. This is checked both during

tests/soak/setup_all_versions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
PYTHON_SOAK_TEST_BRANCH = 'master'
66

77
LIBRDKAFKA_VERSIONS = [
8-
'2.12.0',
8+
'2.12.1',
99
'2.11.1',
1010
'2.10.1',
1111
'2.8.0',
@@ -19,7 +19,7 @@
1919
]
2020

2121
PYTHON_VERSIONS = [
22-
'2.12.0',
22+
'2.12.1',
2323
'2.11.1',
2424
'2.10.1',
2525
'2.8.0',

0 commit comments

Comments
 (0)