From 58c75dd591b2fedea36f2d9c4d8f369c6b6d1acf Mon Sep 17 00:00:00 2001 From: Arnaud Le Blanc Date: Fri, 7 Jan 2022 14:37:25 +0100 Subject: [PATCH] 6.0.0 (#504) --- package.xml | 43 +++++++++++++++++++++++++++++++++++++------ php_rdkafka.h | 2 +- 2 files changed, 38 insertions(+), 7 deletions(-) diff --git a/package.xml b/package.xml index 10676ac7..a1a30b49 100644 --- a/package.xml +++ b/package.xml @@ -10,20 +10,34 @@ arnaud.lb@gmail.com yes - 2021-11-27 - + 2022-01-07 + - 6.0.0RC2 + 6.0.0 6.0.0 - beta - beta + stable + stable MIT License + # Changes since 5.x + + ## Improvements + - PHP 8.1 support (@remicollet, @ruudk, @nick-zh) + - Added parameter types (when built with PHP>=8.0) (@arnaud-lb) + - Added tentative return types (when built with PHP>=8.1) (@arnaud-lb) + + ## Deprecations + - PHP 8.1: Overloading php-rdkafka methods without specifying a return type + will trigger a deprecation message unless annotated with + #[\ReturnTypeWillChange] + + # Changes since 6.0.0RC2 + ## Bugfixes - - Fix crash in RdKafka\TopicPartition::__construct() (#491, @remicollet) + - Fix newTopic() arginfo (#502, @arnaud-lb) @@ -156,6 +170,23 @@ rdkafka + + 2021-11-27 + + + 6.0.0RC2 + 6.0.0 + + + beta + beta + + MIT License + + ## Bugfixes + - Fix crash in RdKafka\TopicPartition::__construct() (#491, @remicollet) + + 2021-11-19 diff --git a/php_rdkafka.h b/php_rdkafka.h index bd450842..845de637 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.0RC2" +#define PHP_RDKAFKA_VERSION "6.0.0" extern zend_object_handlers kafka_default_object_handlers; extern zend_class_entry * ce_kafka_exception;