-
Notifications
You must be signed in to change notification settings - Fork 933
2.12.0rc2 #2086
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.12.0rc2 #2086
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -38,27 +38,27 @@ | |||||
| /** | ||||||
| * @brief confluent-kafka-python version, must match that of pyproject.toml. | ||||||
| */ | ||||||
| #define CFL_VERSION_STR "2.12.0b1" | ||||||
| #define CFL_VERSION_STR "2.12.0rc2" | ||||||
|
|
||||||
| /** | ||||||
| * Minimum required librdkafka version. This is checked both during | ||||||
| * build-time (just below) and runtime (see confluent_kafka.c). | ||||||
| * Make sure to keep the MIN_RD_KAFKA_VERSION, MIN_VER_ERRSTR and #error | ||||||
| * defines and strings in sync. | ||||||
| */ | ||||||
| #define MIN_RD_KAFKA_VERSION 0x020b01ff | ||||||
| #define MIN_RD_KAFKA_VERSION 0x020c00ff | ||||||
|
||||||
| #define MIN_RD_KAFKA_VERSION 0x020c00ff | |
| #define MIN_RD_KAFKA_VERSION 0x020c0002 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,7 +20,7 @@ | |
|
|
||
| PYTHON_VERSIONS = [ | ||
| # '2.12.0', | ||
| '2.11.0', | ||
| '2.11.1', | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Update RELEASE.md with the information to update version here as well. |
||
| '2.10.1', | ||
| '2.8.0', | ||
| '2.6.1', | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The librdkafka version format 'v2.12.0-RC2' may not match the actual git tag or release naming convention used by librdkafka. Verify that this exact version string exists in the librdkafka repository.