diff --git a/package.xml b/package.xml index b0c9d6e3..8500d6e1 100644 --- a/package.xml +++ b/package.xml @@ -10,10 +10,10 @@ arnaud.lb@gmail.com yes - 2021-11-19 + 2021-11-27 - 6.0.0RC1 + 6.0.0RC2 6.0.0 @@ -22,11 +22,8 @@ MIT License - ## Enhancements - - PHP 8.1 support (@ruudk, @remicollet, @nick-zh, @arnaud-lb) - - ## Breaking changes - - Added tentative return types in PHP 8.1 builds + ## Bugfixes + - Fix crash in RdKafka\TopicPartition::__construct() (#491, @remicollet) @@ -158,6 +155,26 @@ rdkafka + + 2021-11-19 + + + 6.0.0RC1 + 6.0.0 + + + beta + beta + + MIT License + + ## Enhancements + - PHP 8.1 support (@ruudk, @remicollet, @nick-zh, @arnaud-lb) + + ## Breaking changes + - Added tentative return types in PHP 8.1 builds + + 2021-11-19 diff --git a/php_rdkafka.h b/php_rdkafka.h index 4f49fa5b..bd450842 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 "6.0.0RC1" +#define PHP_RDKAFKA_VERSION "6.0.0RC2" extern zend_object_handlers kafka_default_object_handlers; extern zend_class_entry * ce_kafka_exception;