Skip to content

Commit 68de153

Browse files
committed
Bump to v1.5.2 (and librdkafka v1.5.2)
1 parent 2d0374d commit 68de153

File tree

7 files changed

+25
-8
lines changed

7 files changed

+25
-8
lines changed

.appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
environment:
22
global:
3-
LIBRDKAFKA_NUGET_VERSION: 1.5.0
3+
LIBRDKAFKA_NUGET_VERSION: 1.5.2
44
CIBW_SKIP: cp33-* cp34-*
55
CIBW_TEST_REQUIRES: pytest pytest-timeout requests trivup
66
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
env:
22
global:
3-
- LIBRDKAFKA_VERSION=v1.5.0
3+
- LIBRDKAFKA_VERSION=v1.5.2
44
jobs:
55
include:
66
# Source package verification with Python 2.7

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Confluent's Python client for Apache Kafka
22

3+
## v1.5.2
4+
5+
v1.5.2 is a maintenance release with the following fixing and enhancements:
6+
7+
- Add producer purge method with optional blocking argument (@peteryin21, #548)
8+
- Add AdminClient.list_groups API (@messense, #948)
9+
- Rename asyncio.py example to avoid circular import (#945)
10+
- Upgrade bundled OpenSSL to v1.1.1h (from v1.0.2u)
11+
12+
confluent-kafka-python is based on librdkafka v1.5.2, see the
13+
[librdkafka release notes](https://github.com/edenhill/librdkafka/releases/tag/v1.5.2)
14+
for a complete list of changes, enhancements, fixes and upgrade considerations.
15+
16+
17+
**Note: There was no v1.5.1 release**
18+
19+
320
## v1.5.0
421

522
v1.5.0 is a maintenance release with the following fixes and enhancements:

confluent_kafka/src/confluent_kafka.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
* 0xMMmmRRPP
4242
* MM=major, mm=minor, RR=revision, PP=patchlevel (not used)
4343
*/
44-
#define CFL_VERSION 0x01050000
45-
#define CFL_VERSION_STR "1.5.0"
44+
#define CFL_VERSION 0x01050200
45+
#define CFL_VERSION_STR "1.5.2"
4646

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

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@
5757
# built documents.
5858
#
5959
# The short X.Y version.
60-
version = '1.5.0'
60+
version = '1.5.2'
6161
# The full version, including alpha/beta/rc tags.
62-
release = '1.5.0'
62+
release = version
6363

6464
# The language for content autogenerated by Sphinx. Refer to documentation
6565
# for a list of supported languages.

examples/docker/Dockerfile.alpine

+1-1
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.5.0
33+
ENV LIBRDKAFKA_VERSION v1.5.2
3434
ENV KAFKACAT_VERSION master
3535

3636

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def get_install_requirements(path):
6464
setup(name='confluent-kafka',
6565
# Make sure to bump CFL_VERSION* in confluent_kafka/src/confluent_kafka.h
6666
# and version and release in docs/conf.py.
67-
version='1.5.0',
67+
version='1.5.2',
6868
description='Confluent\'s Python client for Apache Kafka',
6969
author='Confluent Inc',
7070
author_email='[email protected]',

0 commit comments

Comments
 (0)