diff --git a/package.xml b/package.xml index 1237c48c..c442fdf4 100644 --- a/package.xml +++ b/package.xml @@ -10,10 +10,10 @@ arnaud.lb@gmail.com yes - 2021-01-14 - + 2021-11-19 + - 5.0.0 + 5.0.1 4.0.0 @@ -23,11 +23,12 @@ MIT License ## Enhancements - - PHP 8 support (@nick-zh, @arnaud-lb) - - Suport passing an opaque value in produce(), producev() (@arnaud-lb) + - Add pausePartitions(), resumePartitions() on RdKfaka, RdKafka\KafkaConsumer (#438, @arnaud-lb) + - Clarify error when KafkaConsumer is closed (@zoonru) - ## Breaking changes - - Dropped PHP 5 support + ## Bugfixes + - Fix windows build (#440, @nick-zh) + - Fix crash in RdKafka\Metadata\Topic::getTopic() (#465, @arnaud-lb) @@ -116,6 +117,27 @@ rdkafka + + 2021-01-14 + + + 5.0.0 + 4.0.0 + + + stable + stable + + MIT License + + ## Enhancements + - PHP 8 support (@nick-zh, @arnaud-lb) + - Suport passing an opaque value in produce(), producev() (@arnaud-lb) + + ## Breaking changes + - Dropped PHP 5 support + + 2020-12-06 diff --git a/php_rdkafka.h b/php_rdkafka.h index 948652a3..8dd71b7a 100644 --- a/php_rdkafka.h +++ b/php_rdkafka.h @@ -43,7 +43,7 @@ PHP_METHOD(RdKafka, __construct); extern zend_module_entry rdkafka_module_entry; #define phpext_rdkafka_ptr &rdkafka_module_entry -#define PHP_RDKAFKA_VERSION "5.0.0" +#define PHP_RDKAFKA_VERSION "5.0.1" extern zend_object_handlers kafka_default_object_handlers; extern zend_class_entry * ce_kafka_exception;