Skip to content

Commit 241a0b7

Browse files
committed
5.0.1
1 parent 5fbeeca commit 241a0b7

File tree

2 files changed

+30
-8
lines changed

2 files changed

+30
-8
lines changed

package.xml

+29-7
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
<email>[email protected]</email>
1111
<active>yes</active>
1212
</lead>
13-
<date>2021-01-14</date>
14-
<time>12:00:00</time>
13+
<date>2021-11-19</date>
14+
<time>14:00:00</time>
1515
<version>
16-
<release>5.0.0</release>
16+
<release>5.0.1</release>
1717
<api>4.0.0</api>
1818
</version>
1919
<stability>
@@ -23,11 +23,12 @@
2323
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
2424
<notes>
2525
## Enhancements
26-
- PHP 8 support (@nick-zh, @arnaud-lb)
27-
- Suport passing an opaque value in produce(), producev() (@arnaud-lb)
26+
- Add pausePartitions(), resumePartitions() on RdKfaka, RdKafka\KafkaConsumer (#438, @arnaud-lb)
27+
- Clarify error when KafkaConsumer is closed (@zoonru)
2828

29-
## Breaking changes
30-
- Dropped PHP 5 support
29+
## Bugfixes
30+
- Fix windows build (#440, @nick-zh)
31+
- Fix crash in RdKafka\Metadata\Topic::getTopic() (#465, @arnaud-lb)
3132
</notes>
3233
<contents>
3334
<dir name="/">
@@ -116,6 +117,27 @@
116117
<providesextension>rdkafka</providesextension>
117118
<extsrcrelease/>
118119
<changelog>
120+
<release>
121+
<date>2021-01-14</date>
122+
<time>12:00:00</time>
123+
<version>
124+
<release>5.0.0</release>
125+
<api>4.0.0</api>
126+
</version>
127+
<stability>
128+
<release>stable</release>
129+
<api>stable</api>
130+
</stability>
131+
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
132+
<notes>
133+
## Enhancements
134+
- PHP 8 support (@nick-zh, @arnaud-lb)
135+
- Suport passing an opaque value in produce(), producev() (@arnaud-lb)
136+
137+
## Breaking changes
138+
- Dropped PHP 5 support
139+
</notes>
140+
</release>
119141
<release>
120142
<date>2020-12-06</date>
121143
<time>12: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 "5.0.0"
46+
#define PHP_RDKAFKA_VERSION "5.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)