Skip to content

Commit 44d4422

Browse files
authored
6.0.1 (#514)
1 parent 4fa5063 commit 44d4422

File tree

2 files changed

+35
-18
lines changed

2 files changed

+35
-18
lines changed

package.xml

Lines changed: 34 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
<email>arnaud.lb@gmail.com</email>
1111
<active>yes</active>
1212
</lead>
13-
<date>2022-01-07</date>
13+
<date>2022-02-15</date>
1414
<time>12:00:00</time>
1515
<version>
16-
<release>6.0.0</release>
16+
<release>6.0.1</release>
1717
<api>6.0.0</api>
1818
</version>
1919
<stability>
@@ -22,22 +22,8 @@
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-
3925
## Bugfixes
40-
- Fix newTopic() arginfo (#502, @arnaud-lb)
26+
- Always initialize Message::$headers (#508, @arnaud-lb)
4127
</notes>
4228
<contents>
4329
<dir name="/">
@@ -171,6 +157,37 @@
171157
<providesextension>rdkafka</providesextension>
172158
<extsrcrelease/>
173159
<changelog>
160+
<release>
161+
<date>2022-01-07</date>
162+
<time>12:00:00</time>
163+
<version>
164+
<release>6.0.0</release>
165+
<api>6.0.0</api>
166+
</version>
167+
<stability>
168+
<release>stable</release>
169+
<api>stable</api>
170+
</stability>
171+
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
172+
<notes>
173+
# Changes since 5.x
174+
175+
## Improvements
176+
- PHP 8.1 support (@remicollet, @ruudk, @nick-zh)
177+
- Added parameter types (when built with PHP>=8.0) (@arnaud-lb)
178+
- Added tentative return types (when built with PHP>=8.1) (@arnaud-lb)
179+
180+
## Deprecations
181+
- PHP 8.1: Overloading php-rdkafka methods without specifying a return type
182+
will trigger a deprecation message unless annotated with
183+
#[\ReturnTypeWillChange]
184+
185+
# Changes since 6.0.0RC2
186+
187+
## Bugfixes
188+
- Fix newTopic() arginfo (#502, @arnaud-lb)
189+
</notes>
190+
</release>
174191
<release>
175192
<date>2021-11-27</date>
176193
<time>15:00:00</time>

php_rdkafka.h

Lines changed: 1 addition & 1 deletion
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.0"
46+
#define PHP_RDKAFKA_VERSION "6.0.1"
4747

4848
extern zend_object_handlers kafka_default_object_handlers;
4949
extern zend_class_entry * ce_kafka_exception;

0 commit comments

Comments
 (0)