|
43 | 43 | * MM=major, mm=minor, RR=revision, PP=patchlevel (not used) |
44 | 44 | */ |
45 | 45 | #define CFL_VERSION 0x020a0100 |
46 | | -#define CFL_VERSION_STR "2.10.1rc1" |
| 46 | +#define CFL_VERSION_STR "2.10.1" |
47 | 47 |
|
48 | 48 | /** |
49 | 49 | * Minimum required librdkafka version. This is checked both during |
50 | 50 | * build-time (just below) and runtime (see confluent_kafka.c). |
51 | 51 | * Make sure to keep the MIN_RD_KAFKA_VERSION, MIN_VER_ERRSTR and #error |
52 | 52 | * defines and strings in sync. |
53 | 53 | */ |
54 | | -#define MIN_RD_KAFKA_VERSION 0x020a00ff |
| 54 | +#define MIN_RD_KAFKA_VERSION 0x020a01ff |
55 | 55 |
|
56 | 56 | #ifdef __APPLE__ |
57 | | -#define MIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.10.0 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`" |
| 57 | +#define MIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.10.1 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`" |
58 | 58 | #else |
59 | | -#define MIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.10.0 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html" |
| 59 | +#define MIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.10.1 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html" |
60 | 60 | #endif |
61 | 61 |
|
62 | 62 | #if RD_KAFKA_VERSION < MIN_RD_KAFKA_VERSION |
63 | 63 | #ifdef __APPLE__ |
64 | | -#error "confluent-kafka-python requires librdkafka v2.10.0 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`" |
| 64 | +#error "confluent-kafka-python requires librdkafka v2.10.1 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`" |
65 | 65 | #else |
66 | | -#error "confluent-kafka-python requires librdkafka v2.10.0 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html" |
| 66 | +#error "confluent-kafka-python requires librdkafka v2.10.1 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html" |
67 | 67 | #endif |
68 | 68 | #endif |
69 | 69 |
|
|
0 commit comments