Skip to content

Commit 1979093

Browse files
authored
Version changes for release 2.13.2 (#2207)
* Version changes for release * soak test version upgrade
1 parent 28871a2 commit 1979093

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-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.13.2-RC1
11+
value: v2.13.2
1212
prologue:
1313
commands:
1414
- checkout

CHANGELOG.md

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

3-
## v2.13.1
3+
## v2.13.2 - 2026-03-02
44

5-
v2.13.1 is a maintenance release with the following fixes and enhancements:
5+
v2.13.2 is a maintenance release with the following fixes and enhancements:
66

77
### Enhancements
88

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.13.0"
33+
ENV LIBRDKAFKA_VERSION="v2.13.2"
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.13.2rc1"
7+
version = "2.13.2"
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.13.2rc1"
41+
#define CFL_VERSION_STR "2.13.2"
4242

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

tests/soak/setup_all_versions.py

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

77
LIBRDKAFKA_VERSIONS = [
8+
'2.13.2',
89
'2.13.0',
910
'2.12.1',
1011
'2.11.1',
@@ -20,7 +21,7 @@
2021
]
2122

2223
PYTHON_VERSIONS = [
23-
'2.13.2rc1',
24+
'2.13.2',
2425
'2.13.0',
2526
'2.12.1',
2627
'2.11.1',

0 commit comments

Comments
 (0)