Skip to content

Commit

Permalink
Bump version to v1.8.2 to align with embedded librdkafka version
Browse files Browse the repository at this point in the history
  • Loading branch information
edenhill committed Jan 6, 2022
1 parent beccd37 commit 3010e93
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Confluent's Python client for Apache Kafka

## v1.8.0
## v1.8.2

v1.8.0 is a maintenance release with the following fixes and enhancements:
v1.8.2 is a maintenance release with the following fixes and enhancements:

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

**Note**: There were no v1.8.0 and v1.8.1 releases.


## v1.7.0

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
# built documents.
#
# The short X.Y version.
version = '1.8.0'
version = '1.8.2'
# The full version, including alpha/beta/rc tags.
release = version
######################################################################
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def get_install_requirements(path):
setup(name='confluent-kafka',
# Make sure to bump CFL_VERSION* in confluent_kafka/src/confluent_kafka.h
# and version in docs/conf.py.
version='1.8.0',
version='1.8.2',
description='Confluent\'s Python client for Apache Kafka',
author='Confluent Inc',
author_email='[email protected]',
Expand Down
4 changes: 2 additions & 2 deletions src/confluent_kafka/src/confluent_kafka.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
* 0xMMmmRRPP
* MM=major, mm=minor, RR=revision, PP=patchlevel (not used)
*/
#define CFL_VERSION 0x01080000
#define CFL_VERSION_STR "1.8.0"
#define CFL_VERSION 0x01080200
#define CFL_VERSION_STR "1.8.2"

/**
* Minimum required librdkafka version. This is checked both during
Expand Down

0 comments on commit 3010e93

Please sign in to comment.