Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.4.0 #176

Merged
merged 1 commit into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 32 additions & 3 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>bigbes@gmail.com</email>
<active>yes</active>
</lead>
<date>2020-06-30</date>
<date>2024-07-04</date>
<version>
<release>0.3.3</release>
<api>0.3.3</api>
<release>0.4.0</release>
<api>0.4.0</api>
</version>
<stability>
<release>beta</release>
Expand Down Expand Up @@ -91,6 +91,35 @@ http://pear.php.net/dtd/package-2.0.xsd">
<providesextension>tarantool</providesextension>
<extsrcrelease/>
<changelog>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.4.0</release><api>0.4.0</api></version>
<date>2024-07-04</date>
<notes>
tarantool-php 0.4.0

## Overview

The release adds support for PHP 8.x and fixes incompatibility with
Tarantool 2.10+.

## Breaking changes

This release should not break existing code.

## New features

- Support PHP 8.x (#171).
- Support Tarantool 2.10+ (#175).
- Call IPROTO method (#101).
- Support new _index system space format (#151).

## Bugfixes

- Give meaningful error when retry_count is zero (#83).
- select() by space_no and index_name (#42).
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.3.3</release><api>0.3.3</api></version>
Expand Down
2 changes: 1 addition & 1 deletion src/php_tarantool.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
extern zend_module_entry tarantool_module_entry;
#define phpext_tarantool_ptr &tarantool_module_entry

#define PHP_TARANTOOL_VERSION "0.3.3"
#define PHP_TARANTOOL_VERSION "0.4.0"
#define PHP_TARANTOOL_EXTNAME "tarantool"

#ifdef PHP_WIN32
Expand Down