diff --git a/CHANGELOG.md b/CHANGELOG.md index 3adb633ba..14398bcee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/docs/conf.py b/docs/conf.py index e0a691bc4..de86f6c29 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 ###################################################################### diff --git a/setup.py b/setup.py index ac1810816..295c5cdc8 100755 --- a/setup.py +++ b/setup.py @@ -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='support@confluent.io', diff --git a/src/confluent_kafka/src/confluent_kafka.h b/src/confluent_kafka/src/confluent_kafka.h index 79eb71f15..016023538 100644 --- a/src/confluent_kafka/src/confluent_kafka.h +++ b/src/confluent_kafka/src/confluent_kafka.h @@ -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