Skip to content

Commit 58c75dd

Browse files
authored
6.0.0 (#504)
1 parent d840cf4 commit 58c75dd

File tree

2 files changed

+38
-7
lines changed

2 files changed

+38
-7
lines changed

package.xml

+37-6
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,34 @@
1010
<email>[email protected]</email>
1111
<active>yes</active>
1212
</lead>
13-
<date>2021-11-27</date>
14-
<time>15:00:00</time>
13+
<date>2022-01-07</date>
14+
<time>12:00:00</time>
1515
<version>
16-
<release>6.0.0RC2</release>
16+
<release>6.0.0</release>
1717
<api>6.0.0</api>
1818
</version>
1919
<stability>
20-
<release>beta</release>
21-
<api>beta</api>
20+
<release>stable</release>
21+
<api>stable</api>
2222
</stability>
2323
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
2424
<notes>
25+
# Changes since 5.x
26+
27+
## Improvements
28+
- PHP 8.1 support (@remicollet, @ruudk, @nick-zh)
29+
- Added parameter types (when built with PHP>=8.0) (@arnaud-lb)
30+
- Added tentative return types (when built with PHP>=8.1) (@arnaud-lb)
31+
32+
## Deprecations
33+
- PHP 8.1: Overloading php-rdkafka methods without specifying a return type
34+
will trigger a deprecation message unless annotated with
35+
#[\ReturnTypeWillChange]
36+
37+
# Changes since 6.0.0RC2
38+
2539
## Bugfixes
26-
- Fix crash in RdKafka\TopicPartition::__construct() (#491, @remicollet)
40+
- Fix newTopic() arginfo (#502, @arnaud-lb)
2741
</notes>
2842
<contents>
2943
<dir name="/">
@@ -156,6 +170,23 @@
156170
<providesextension>rdkafka</providesextension>
157171
<extsrcrelease/>
158172
<changelog>
173+
<release>
174+
<date>2021-11-27</date>
175+
<time>15:00:00</time>
176+
<version>
177+
<release>6.0.0RC2</release>
178+
<api>6.0.0</api>
179+
</version>
180+
<stability>
181+
<release>beta</release>
182+
<api>beta</api>
183+
</stability>
184+
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
185+
<notes>
186+
## Bugfixes
187+
- Fix crash in RdKafka\TopicPartition::__construct() (#491, @remicollet)
188+
</notes>
189+
</release>
159190
<release>
160191
<date>2021-11-19</date>
161192
<time>15:00:00</time>

php_rdkafka.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ PHP_METHOD(RdKafka, __construct);
4343
extern zend_module_entry rdkafka_module_entry;
4444
#define phpext_rdkafka_ptr &rdkafka_module_entry
4545

46-
#define PHP_RDKAFKA_VERSION "6.0.0RC2"
46+
#define PHP_RDKAFKA_VERSION "6.0.0"
4747

4848
extern zend_object_handlers kafka_default_object_handlers;
4949
extern zend_class_entry * ce_kafka_exception;

0 commit comments

Comments
 (0)