Skip to content

Commit 60ad0d3

Browse files
committed
Bump to version 1.8.0
1 parent a5663da commit 60ad0d3

File tree

6 files changed

+23
-6
lines changed

6 files changed

+23
-6
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.7.0
3+
- LIBRDKAFKA_VERSION=v1.8.0
44

55
jobs:
66
include:

CHANGELOG.md

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

3+
## v1.8.0
4+
5+
v1.8.0 is a maintenance release with the following fixes and enhancements:
6+
7+
- Added `use.latest.version` and `skip.known.types` (Protobuf) to
8+
the Serializer classes. (Robert Yokota, #1133).
9+
- `list_topics()` and `list_groups()` added to AdminClient.
10+
- Added support for headers in the SerializationContext (Laurent Domenech-Cabaud)
11+
- Fix crash in header parsing (Armin Ronacher, #1165)
12+
- Added long package description in setuptools (Bowrna, #1172).
13+
- Documentation fixes by Aviram Hassan and Ryan Slominski.
14+
15+
confluent-kafka-python is based on librdkafka v1.8.0, see the
16+
[librdkafka release notes](https://github.com/edenhill/librdkafka/releases/tag/v1.8.0)
17+
for a complete list of changes, enhancements, fixes and upgrade considerations.
18+
19+
320
## v1.7.0
421

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

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.7.0'
37+
version = '1.8.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.7.0
33+
ENV LIBRDKAFKA_VERSION v1.8.0
3434
ENV KAFKACAT_VERSION master
3535

3636

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def get_install_requirements(path):
7979
setup(name='confluent-kafka',
8080
# Make sure to bump CFL_VERSION* in confluent_kafka/src/confluent_kafka.h
8181
# and version in docs/conf.py.
82-
version='1.7.0',
82+
version='1.8.0',
8383
description='Confluent\'s Python client for Apache Kafka',
8484
author='Confluent Inc',
8585
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 0x01070000
46-
#define CFL_VERSION_STR "1.7.0"
45+
#define CFL_VERSION 0x01080000
46+
#define CFL_VERSION_STR "1.8.0"
4747

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

0 commit comments

Comments
 (0)