Skip to content

Commit a27d113

Browse files
authored
Few Changelog and doc changes. Final release version. (#1666)
1 parent 02d9bcd commit a27d113

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@
55
v2.3.0 is a feature release with the following features, fixes and enhancements:
66

77
- Add Python 3.12 wheels
8-
- Add support for AdminAPI `DescribeCluster()` and `DescribeTopics()`. (@jainruchir, #1635)
8+
- [KIP-117](https://cwiki.apache.org/confluence/display/KAFKA/KIP-117%3A+Add+a+public+AdminClient+API+for+Kafka+admin+operations): Add support for AdminAPI `describe_cluster()` and `describe_topics()`. (@jainruchir, #1635)
99
- [KIP-430](https://cwiki.apache.org/confluence/display/KAFKA/KIP-430+-+Return+Authorized+Operations+in+Describe+Responses):
1010
Return authorized operations in Describe Responses. (@jainruchir, #1635)
11+
- [KIP-516](https://cwiki.apache.org/confluence/display/KAFKA/KIP-516%3A+Topic+Identifiers): Partial support of topic identifiers. Topic identifiers in metadata response are available through the new describe_topics function (#1645).
12+
- [KIP-396](https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=97551484): completed the implementation with the addition of `list_offsets` (#1576).
1113
- Add `Rack` to the `Node` type, so AdminAPI calls can expose racks for brokers
1214
(currently, all Describe Responses) (#1635, @jainruchir).
1315
- Fix the Describe User Scram Credentials for Describe all users or empty users list. Please refer to

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
# built documents.
3636
#
3737
# The short X.Y version.
38-
version = '2.3.0rc4'
38+
version = '2.3.0'
3939
# The full version, including alpha/beta/rc tags.
4040
release = version
4141
######################################################################

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def get_install_requirements(path):
7575
setup(name='confluent-kafka',
7676
# Make sure to bump CFL_VERSION* in confluent_kafka/src/confluent_kafka.h
7777
# and version in docs/conf.py.
78-
version='2.3.0rc4',
78+
version='2.3.0',
7979
description='Confluent\'s Python client for Apache Kafka',
8080
author='Confluent Inc',
8181
author_email='[email protected]',

src/confluent_kafka/deserializing_consumer.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ class DeserializingConsumer(_ConsumerImpl):
4040
+-------------------------+---------------------+-----------------------------------------------------+
4141
| Property Name | Type | Description |
4242
+=========================+=====================+=====================================================+
43-
| | | Callable(SerializationContext, bytes) -> obj |
43+
| | | Callable(bytes, SerializationContext) -> obj |
4444
| ``key.deserializer`` | callable | |
4545
| | | Deserializer used for message keys. |
4646
+-------------------------+---------------------+-----------------------------------------------------+
47-
| | | Callable(SerializationContext, bytes) -> obj |
47+
| | | Callable(bytes, SerializationContext) -> obj |
4848
| ``value.deserializer`` | callable | |
4949
| | | Deserializer used for message values. |
5050
+-------------------------+---------------------+-----------------------------------------------------+

src/confluent_kafka/src/confluent_kafka.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* MM=major, mm=minor, RR=revision, PP=patchlevel (not used)
4444
*/
4545
#define CFL_VERSION 0x02030000
46-
#define CFL_VERSION_STR "2.3.0rc4"
46+
#define CFL_VERSION_STR "2.3.0"
4747

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

0 commit comments

Comments
 (0)