Skip to content

Commit f1ab9da

Browse files
committed
librdkafka version v1.7.0-RC8
1 parent d9a91a3 commit f1ab9da

File tree

8 files changed

+22
-8
lines changed

8 files changed

+22
-8
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
env:
22
global:
3-
- LIBRDKAFKA_VERSION=v1.6.1
3+
- LIBRDKAFKA_VERSION=v1.7.0-RC8
44

55
jobs:
66
include:

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Confluent's Python client for Apache Kafka
22

3+
## v1.7.0
4+
5+
v1.7.0 is a maintenance release with the following fixes and enhancements:
6+
7+
- Add error_cb to confluent_cloud.py example (#1096).
8+
- Clarify that doc output varies based on method (@slominskir, #1098).
9+
- Docs say Schema when they mean SchemaReference (@slominskir, #1092).
10+
- Add documentation for NewTopic and NewPartitions (#1101).
11+
12+
confluent-kafka-python is based on librdkafka v1.7.0, see the
13+
[librdkafka release notes](https://github.com/edenhill/librdkafka/releases/tag/v1.7.0)
14+
for a complete list of changes, enhancements, fixes and upgrade considerations.
15+
16+
317
## v1.6.1
418

519
v1.6.1 is a feature release:

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# built documents.
3535
#
3636
# The short X.Y version.
37-
version = '1.6.1'
37+
version = '1.7.0'
3838
# The full version, including alpha/beta/rc tags.
3939
release = version
4040
######################################################################

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 v1.6.1
33+
ENV LIBRDKAFKA_VERSION v1.7.0-RC8
3434
ENV KAFKACAT_VERSION master
3535

3636

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def get_install_requirements(path):
7676
setup(name='confluent-kafka',
7777
# Make sure to bump CFL_VERSION* in confluent_kafka/src/confluent_kafka.h
7878
# and version in docs/conf.py.
79-
version='1.6.1',
79+
version='1.7.0',
8080
description='Confluent\'s Python client for Apache Kafka',
8181
author='Confluent Inc',
8282
author_email='[email protected]',

src/confluent_kafka/src/confluent_kafka.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
* 0xMMmmRRPP
4343
* MM=major, mm=minor, RR=revision, PP=patchlevel (not used)
4444
*/
45-
#define CFL_VERSION 0x01060100
46-
#define CFL_VERSION_STR "1.6.1"
45+
#define CFL_VERSION 0x01070000
46+
#define CFL_VERSION_STR "1.7.0"
4747

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

tools/wheels/build-wheels.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ set CIBW_REPAIR_WHEEL_COMMAND=python -m delvewheel repair --add-path %DLL_DIR% -
2525

2626
set PATH=%PATH%;c:\Program Files\Git\bin\
2727

28-
python -m pip install cibuildwheel==1.7.4 || goto :error
28+
python -m pip install cibuildwheel==1.11.0 || goto :error
2929

3030
python -m cibuildwheel --output-dir %WHEELHOUSE% --platform windows || goto :error
3131

tools/wheels/build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ esac
5151

5252
$this_dir/install-librdkafka.sh $librdkafka_version dest
5353

54-
install_pkgs=cibuildwheel==1.7.4
54+
install_pkgs=cibuildwheel==1.11.0
5555

5656
python3 -m pip install $install_pkgs ||
5757
pip3 install $install_pkgs

0 commit comments

Comments
 (0)