| 
42 | 42 |  *  0xMMmmRRPP  | 
43 | 43 |  *  MM=major, mm=minor, RR=revision, PP=patchlevel (not used)  | 
44 | 44 |  */  | 
45 |  | -#define CFL_VERSION     0x02050000  | 
46 |  | -#define CFL_VERSION_STR "2.5.0"  | 
 | 45 | +#define CFL_VERSION     0x02050300  | 
 | 46 | +#define CFL_VERSION_STR "2.5.3rc1"  | 
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 0x020500ff  | 
 | 54 | +#define MIN_RD_KAFKA_VERSION 0x020503ff  | 
55 | 55 | 
 
  | 
56 | 56 | #ifdef __APPLE__  | 
57 |  | -#define MIN_VER_ERRSTR "confluent-kafka-python requires librdkafka v2.5.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.5.3 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.5.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.5.3 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.5.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.5.3 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.5.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.5.3 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