Skip to content

Commit cb9794e

Browse files
authored
6.0.2 (#523)
1 parent d132dc8 commit cb9794e

File tree

3 files changed

+43
-10
lines changed

3 files changed

+43
-10
lines changed

.appveyor.yml

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,41 @@ environment:
88
BIN_SDK_VER: 2.2.0
99
DEP: librdkafka-1.5.3
1010
matrix:
11-
- PHP_VER: 7.3
11+
- PHP_VER: 7.4
1212
TS: 0
1313
VC: vc15
1414
ARCH: x64
1515
OPCACHE: 0
16-
- PHP_VER: 7.3
16+
- PHP_VER: 7.4
1717
TS: 1
1818
VC: vc15
1919
ARCH: x64
2020
OPCACHE: 1
21-
- PHP_VER: 7.4
21+
- PHP_VER: 8.0
2222
TS: 0
23-
VC: vc15
23+
VC: vs16
2424
ARCH: x64
2525
OPCACHE: 0
26-
- PHP_VER: 7.4
26+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
27+
- PHP_VER: 8.0
2728
TS: 1
28-
VC: vc15
29+
VC: vs16
2930
ARCH: x64
3031
OPCACHE: 1
32+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
33+
- PHP_VER: 8.1
34+
TS: 0
35+
VC: vs16
36+
ARCH: x64
37+
OPCACHE: 0
38+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
39+
- PHP_VER: 8.1
40+
TS: 1
41+
VC: vs16
42+
ARCH: x64
43+
OPCACHE: 1
44+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
45+
3146
cache:
3247
- C:\build-cache -> .appveyor.yml, .appveyor\install.ps1
3348
install:

package.xml

Lines changed: 21 additions & 3 deletions
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>2022-02-15</date>
13+
<date>2022-06-12</date>
1414
<time>12:00:00</time>
1515
<version>
16-
<release>6.0.1</release>
16+
<release>6.0.2</release>
1717
<api>6.0.0</api>
1818
</version>
1919
<stability>
@@ -23,7 +23,7 @@
2323
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
2424
<notes>
2525
## Bugfixes
26-
- Always initialize Message::$headers (#508, @arnaud-lb)
26+
- Fixed signature of RdKafka\KafkaConsumer::getMetadata() (#521, @arnaud-lb)
2727
</notes>
2828
<contents>
2929
<dir name="/">
@@ -109,6 +109,7 @@
109109
<file role="test" name="bug330.phpt"/>
110110
<file role="test" name="bug465.phpt"/>
111111
<file role="test" name="bug508.phpt"/>
112+
<file role="test" name="bug521.phpt"/>
112113
<file role="test" name="bug74.phpt"/>
113114
<file role="test" name="bug88.phpt"/>
114115
<file role="test" name="bugConfSetArgument.phpt"/>
@@ -157,6 +158,23 @@
157158
<providesextension>rdkafka</providesextension>
158159
<extsrcrelease/>
159160
<changelog>
161+
<release>
162+
<date>2022-02-15</date>
163+
<time>12:00:00</time>
164+
<version>
165+
<release>6.0.1</release>
166+
<api>6.0.0</api>
167+
</version>
168+
<stability>
169+
<release>stable</release>
170+
<api>stable</api>
171+
</stability>
172+
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
173+
<notes>
174+
## Bugfixes
175+
- Always initialize Message::$headers (#508, @arnaud-lb)
176+
</notes>
177+
</release>
160178
<release>
161179
<date>2022-01-07</date>
162180
<time>12: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.1"
46+
#define PHP_RDKAFKA_VERSION "6.0.2"
4747

4848
extern zend_object_handlers kafka_default_object_handlers;
4949
extern zend_class_entry * ce_kafka_exception;

0 commit comments

Comments
 (0)