Skip to content

Commit d6a4e08

Browse files
Version v2.8.2rc1 (#1929)
1 parent 95cb644 commit d6a4e08

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

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

3-
## v2.8.1
3+
## v2.8.2
44

55
v2.8.1 is a maintenance release with the following fixes and enhancements:
66

77
- Fixed caching to ensure cached schema matches input. (#1922)
8+
- Fix handling of named Avro schemas (#1928)
89

9-
confluent-kafka-python v2.8.1 is based on librdkafka v2.8.0, see the
10+
confluent-kafka-python v2.8.2 is based on librdkafka v2.8.0, see the
1011
[librdkafka release notes](https://github.com/confluentinc/librdkafka/releases/tag/v2.8.0)
1112
for a complete list of changes, enhancements, fixes and upgrade considerations.
1213

14+
Note: Versioning is skipped due to breaking change in v2.8.1.
15+
Do not run software with v2.8.1 installed.
16+
1317

1418
## v2.8.0
1519

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# built documents.
2828
#
2929
# The short X.Y version.
30-
version = '2.8.1'
30+
version = '2.8.2'
3131
# The full version, including alpha/beta/rc tags.
3232
release = version
3333
######################################################################

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "confluent-kafka"
7-
version = "2.8.1"
7+
version = "2.8.2"
88
description = "Confluent's Python client for Apache Kafka"
99
classifiers = [
1010
"Development Status :: 5 - Production/Stable",

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 0x02080100
46-
#define CFL_VERSION_STR "2.8.1"
45+
#define CFL_VERSION 0x02080200
46+
#define CFL_VERSION_STR "2.8.2"
4747

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

0 commit comments

Comments
 (0)