Skip to content

Commit 3a25bfa

Browse files
authored
Update version to 2.12.0 for the main release (#2096)
1 parent bf845ae commit 3a25bfa

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
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.0-RC2
11+
value: v2.12.0
1212
prologue:
1313
commands:
1414
- checkout

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-RC2"
33+
ENV LIBRDKAFKA_VERSION="v2.12.0"
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.0rc2"
7+
version = "2.12.0"
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.0rc2"
41+
#define CFL_VERSION_STR "2.12.0"
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.0',
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.0',
2323
'2.11.1',
2424
'2.10.1',
2525
'2.8.0',

0 commit comments

Comments
 (0)