Skip to content

Commit

Permalink
6.0.0 (#504)
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaud-lb authored Jan 7, 2022
1 parent d840cf4 commit 58c75dd
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 7 deletions.
43 changes: 37 additions & 6 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,34 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2021-11-27</date>
<time>15:00:00</time>
<date>2022-01-07</date>
<time>12:00:00</time>
<version>
<release>6.0.0RC2</release>
<release>6.0.0</release>
<api>6.0.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
# Changes since 5.x

## Improvements
- PHP 8.1 support (@remicollet, @ruudk, @nick-zh)
- Added parameter types (when built with PHP>=8.0) (@arnaud-lb)
- Added tentative return types (when built with PHP>=8.1) (@arnaud-lb)

## Deprecations
- PHP 8.1: Overloading php-rdkafka methods without specifying a return type
will trigger a deprecation message unless annotated with
#[\ReturnTypeWillChange]

# Changes since 6.0.0RC2

## Bugfixes
- Fix crash in RdKafka\TopicPartition::__construct() (#491, @remicollet)
- Fix newTopic() arginfo (#502, @arnaud-lb)
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -156,6 +170,23 @@
<providesextension>rdkafka</providesextension>
<extsrcrelease/>
<changelog>
<release>
<date>2021-11-27</date>
<time>15:00:00</time>
<version>
<release>6.0.0RC2</release>
<api>6.0.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://opensource.org/licenses/mit-license.php">MIT License</license>
<notes>
## Bugfixes
- Fix crash in RdKafka\TopicPartition::__construct() (#491, @remicollet)
</notes>
</release>
<release>
<date>2021-11-19</date>
<time>15:00:00</time>
Expand Down
2 changes: 1 addition & 1 deletion php_rdkafka.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ PHP_METHOD(RdKafka, __construct);
extern zend_module_entry rdkafka_module_entry;
#define phpext_rdkafka_ptr &rdkafka_module_entry

#define PHP_RDKAFKA_VERSION "6.0.0RC2"
#define PHP_RDKAFKA_VERSION "6.0.0"

extern zend_object_handlers kafka_default_object_handlers;
extern zend_class_entry * ce_kafka_exception;
Expand Down

0 comments on commit 58c75dd

Please sign in to comment.