Skip to content

Commit 3010e93

Browse files
committed
Bump version to v1.8.2 to align with embedded librdkafka version
1 parent beccd37 commit 3010e93

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGELOG.md

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

3-
## v1.8.0
3+
## v1.8.2
44

5-
v1.8.0 is a maintenance release with the following fixes and enhancements:
5+
v1.8.2 is a maintenance release with the following fixes and enhancements:
66

77
- **Python 2.7 binary wheels are no longer provided.**
88
Users still on Python 2.7 will need to build confluent-kafka from source
@@ -20,6 +20,8 @@ confluent-kafka-python is based on librdkafka v1.8.2, see the
2020
[librdkafka release notes](https://github.com/edenhill/librdkafka/releases/tag/v1.8.2)
2121
for a complete list of changes, enhancements, fixes and upgrade considerations.
2222

23+
**Note**: There were no v1.8.0 and v1.8.1 releases.
24+
2325

2426
## v1.7.0
2527

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.8.0'
37+
version = '1.8.2'
3838
# The full version, including alpha/beta/rc tags.
3939
release = version
4040
######################################################################

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.8.0',
82+
version='1.8.2',
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 0x01080000
46-
#define CFL_VERSION_STR "1.8.0"
45+
#define CFL_VERSION 0x01080200
46+
#define CFL_VERSION_STR "1.8.2"
4747

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

0 commit comments

Comments
 (0)