From 44d4422452def4180860a73f31ad36d237f56535 Mon Sep 17 00:00:00 2001 From: Arnaud Le Blanc Date: Tue, 15 Feb 2022 14:56:14 +0100 Subject: [PATCH] 6.0.1 (#514) --- package.xml | 51 ++++++++++++++++++++++++++++++++++----------------- php_rdkafka.h | 2 +- 2 files changed, 35 insertions(+), 18 deletions(-) diff --git a/package.xml b/package.xml index a3666176..d6a2da04 100644 --- a/package.xml +++ b/package.xml @@ -10,10 +10,10 @@ arnaud.lb@gmail.com yes - 2022-01-07 + 2022-02-15 - 6.0.0 + 6.0.1 6.0.0 @@ -22,22 +22,8 @@ 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 newTopic() arginfo (#502, @arnaud-lb) + - Always initialize Message::$headers (#508, @arnaud-lb) @@ -171,6 +157,37 @@ rdkafka + + 2022-01-07 + + + 6.0.0 + 6.0.0 + + + 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 newTopic() arginfo (#502, @arnaud-lb) + + 2021-11-27 diff --git a/php_rdkafka.h b/php_rdkafka.h index 845de637..45ecd21a 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.0" +#define PHP_RDKAFKA_VERSION "6.0.1" extern zend_object_handlers kafka_default_object_handlers; extern zend_class_entry * ce_kafka_exception;