Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ execution_time_limit:
global_job_config:
env_vars:
- name: LIBRDKAFKA_VERSION
value: v2.12.0-RC2
value: v2.12.0
prologue:
commands:
- checkout
Expand Down
2 changes: 1 addition & 1 deletion examples/docker/Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ FROM alpine:3.12

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

ENV LIBRDKAFKA_VERSION="v2.12.0-RC2"
ENV LIBRDKAFKA_VERSION="v2.12.0"
ENV KCAT_VERSION="master"
ENV CKP_VERSION="master"

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "confluent-kafka"
version = "2.12.0rc2"
version = "2.12.0"
description = "Confluent's Python client for Apache Kafka"
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down
2 changes: 1 addition & 1 deletion src/confluent_kafka/src/confluent_kafka.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
/**
* @brief confluent-kafka-python version, must match that of pyproject.toml.
*/
#define CFL_VERSION_STR "2.12.0rc2"
#define CFL_VERSION_STR "2.12.0"

/**
* Minimum required librdkafka version. This is checked both during
Expand Down
4 changes: 2 additions & 2 deletions tests/soak/setup_all_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
PYTHON_SOAK_TEST_BRANCH = 'master'

LIBRDKAFKA_VERSIONS = [
# '2.12.0',
'2.12.0',
'2.11.1',
'2.10.1',
'2.8.0',
Expand All @@ -19,7 +19,7 @@
]

PYTHON_VERSIONS = [
# '2.12.0',
'2.12.0',
'2.11.1',
'2.10.1',
'2.8.0',
Expand Down