Skip to content

Commit 52efa23

Browse files
committed
Merge branch 'master' into php7
2 parents 1e4d271 + 578e35b commit 52efa23

File tree

3 files changed

+28
-10
lines changed

3 files changed

+28
-10
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# php-rdkafka
22

3+
[![Join the chat at https://gitter.im/arnaud-lb/php-rdkafka](https://badges.gitter.im/arnaud-lb/php-rdkafka.svg)](https://gitter.im/arnaud-lb/php-rdkafka?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4+
35
[![Build Status](https://travis-ci.org/arnaud-lb/php-rdkafka.svg)](https://travis-ci.org/arnaud-lb/php-rdkafka)
46

5-
PHP-rdkafka is a thin [librdkafka](https://github.com/edenhill/librdkafka) binding to providing a working PHP 5 / PHP 7 [Kafka](https://kafka.apache.org/) 0.8 client.
7+
PHP-rdkafka is a thin [librdkafka](https://github.com/edenhill/librdkafka) binding to providing a working PHP 5 / PHP 7 [Kafka](https://kafka.apache.org/) 0.8 / 0.9 client.
68

79
It supports the *consumer*, *producer*, and *metadata* APIs.
810

package2.xml

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
<name>rdkafka</name>
44
<channel>pecl.php.net</channel>
55
<summary>Kafka client based on librdkafka</summary>
6-
<description>This extension is a librdkafka binding providing a working client for Kafka 0.8.</description>
6+
<description>This extension is a librdkafka binding providing a working client for Kafka 0.8 and 0.9.</description>
77
<lead>
88
<name>Arnaud Le Blanc</name>
99
<user>lbarnaud</user>
1010
<email>arnaud.lb@gmail.com</email>
1111
<active>yes</active>
1212
</lead>
13-
<date>2016-01-09</date>
14-
<time>14:00:00</time>
13+
<date>2016-01-11</date>
14+
<time>10:30:00</time>
1515
<version>
16-
<release>0.9.0</release>
16+
<release>0.9.1</release>
1717
<api>0.9.0</api>
1818
</version>
1919
<stability>
@@ -22,9 +22,7 @@
2222
</stability>
2323
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
2424
<notes>
25-
* Metadata API
26-
* Consistent partitioner
27-
* Fix ZTS build
25+
* Allow to build against librdkafka master/0.9.x
2826
</notes>
2927
<contents>
3028
<dir name="/">
@@ -56,7 +54,7 @@
5654
<dependencies>
5755
<required>
5856
<php>
59-
<min>5.4.0</min>
57+
<min>5.3.0</min>
6058
</php>
6159
<pearinstaller>
6260
<min>1.4.8</min>
@@ -66,6 +64,24 @@
6664
<providesextension>rdkafka</providesextension>
6765
<extsrcrelease/>
6866
<changelog>
67+
<release>
68+
<date>2016-01-09</date>
69+
<time>14:00:00</time>
70+
<version>
71+
<release>0.9.0</release>
72+
<api>0.9.0</api>
73+
</version>
74+
<stability>
75+
<release>beta</release>
76+
<api>beta</api>
77+
</stability>
78+
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
79+
<notes>
80+
* Metadata API
81+
* Consistent partitioner
82+
* Fix ZTS build
83+
</notes>
84+
</release>
6985
<release>
7086
<date>2015-05-13</date>
7187
<time>16:26:12</time>

php_rdkafka.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
extern zend_module_entry rdkafka_module_entry;
3131
#define phpext_rdkafka_ptr &rdkafka_module_entry
3232

33-
#define PHP_RDKAFKA_VERSION "0.9.0"
33+
#define PHP_RDKAFKA_VERSION "0.9.1"
3434

3535
extern zend_object_handlers kafka_object_handlers;
3636
extern zend_class_entry * ce_kafka_exception;

0 commit comments

Comments
 (0)