Skip to content

Commit 0d81d29

Browse files
authored
v2.11.0 (#2006)
1 parent 492e63b commit 0d81d29

File tree

6 files changed

+15
-6
lines changed

6 files changed

+15
-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.11.0-RC3
11+
value: v2.11.0
1212
prologue:
1313
commands:
1414
- checkout

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
# Confluent's Python client for Apache Kafka
22

3+
## v2.11.0
4+
5+
v2.11.0 is a feature release with the following enhancements:
6+
7+
confluent-kafka-python v2.11.0 is based on librdkafka v2.11.0, see the
8+
[librdkafka release notes](https://github.com/confluentinc/librdkafka/releases/tag/v2.11.0)
9+
for a complete list of changes, enhancements, fixes and upgrade considerations.
10+
11+
312
## v2.10.1
413

5-
v2.10.1 is a maintenance release with the following fixes
14+
v2.10.1 is a maintenance release with the following fixes:
615

716
- Handled `None` value for optional `ctx` parameter in `ProtobufDeserializer` (#1939)
817
- Handled `None` value for optional `ctx` parameter in `AvroDeserializer` (#1973)

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# built documents.
2828
#
2929
# The short X.Y version.
30-
version = '2.11.0rc3'
30+
version = '2.11.0'
3131
# The full version, including alpha/beta/rc tags.
3232
release = version
3333
######################################################################

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.11.0-RC3"
33+
ENV LIBRDKAFKA_VERSION="v2.11.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.11.0rc3"
7+
version = "2.11.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
@@ -43,7 +43,7 @@
4343
* MM=major, mm=minor, RR=revision, PP=patchlevel (not used)
4444
*/
4545
#define CFL_VERSION 0x020b0000
46-
#define CFL_VERSION_STR "2.11.0rc3"
46+
#define CFL_VERSION_STR "2.11.0"
4747

4848
/**
4949
* Minimum required librdkafka version. This is checked both during

0 commit comments

Comments
 (0)