|
38 | 38 | /** |
39 | 39 | * @brief confluent-kafka-python version, must match that of pyproject.toml. |
40 | 40 | */ |
41 | | -#define CFL_VERSION_STR "2.12.0" |
| 41 | +#define CFL_VERSION_STR "2.12.1rc1" |
42 | 42 |
|
43 | 43 | /** |
44 | 44 | * Minimum required librdkafka version. This is checked both during |
45 | 45 | * build-time (just below) and runtime (see confluent_kafka.c). |
46 | 46 | * Make sure to keep the MIN_RD_KAFKA_VERSION, MIN_VER_ERRSTR and #error |
47 | 47 | * defines and strings in sync. |
48 | 48 | */ |
49 | | -#define MIN_RD_KAFKA_VERSION 0x020c00ff |
| 49 | +#define MIN_RD_KAFKA_VERSION 0x020c01ff |
50 | 50 |
|
51 | 51 | #ifdef __APPLE__ |
52 | | -#define MIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.12.0 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`" |
| 52 | +#define MIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.12.1 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`" |
53 | 53 | #else |
54 | | -#define MIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.12.0 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html" |
| 54 | +#define MIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.12.1 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html" |
55 | 55 | #endif |
56 | 56 |
|
57 | 57 | #if RD_KAFKA_VERSION < MIN_RD_KAFKA_VERSION |
58 | 58 | #ifdef __APPLE__ |
59 | | -#error "confluent-kafka-python requires librdkafka v2.12.0 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`" |
| 59 | +#error "confluent-kafka-python requires librdkafka v2.12.1 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`" |
60 | 60 | #else |
61 | | -#error "confluent-kafka-python requires librdkafka v2.12.0 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html" |
| 61 | +#error "confluent-kafka-python requires librdkafka v2.12.1 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html" |
62 | 62 | #endif |
63 | 63 | #endif |
64 | 64 |
|
|
0 commit comments