Skip to content

Commit 98e86de

Browse files
committed
Release 2.5.1
Change-Id: I4b2e72361319d8d56b160732e73a8b2840acf2d7 Reviewed-on: http://review.couchbase.org/98126 Tested-by: Build Bot <[email protected]> Reviewed-by: Sergey Avseyev <[email protected]>
1 parent eeedcfe commit 98e86de

File tree

2 files changed

+29
-9
lines changed

2 files changed

+29
-9
lines changed

package.xml

Lines changed: 28 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
<active>yes</active>
1919
</lead>
2020

21-
<date>2018-07-05</date>
21+
<date>2018-08-10</date>
2222
<version>
23-
<release>2.5.0</release>
23+
<release>2.5.1</release>
2424
<api>2.3.0</api>
2525
</version>
2626
<stability>
@@ -30,12 +30,8 @@
3030
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache V2
3131
</license>
3232
<notes>
33-
* PCBC-551: Do not complain about missing igbinary on start
34-
* PCBC-552: Pass logger to lcb_create to catch all log messages
35-
* PCBC-553: Check if crypto provider implements IV and signatures
36-
* PCBC-554: Fix search query descending order to use "desc"
37-
* PCBC-544: Implement CertAuthenticator for extra checks
38-
* Fixes for PHP 7.3
33+
* PCBC-557: Better FTS example
34+
* PCBC-533: Implement experimental FTS index management API
3935
</notes>
4036
<contents>
4137
<dir name="/">
@@ -58,6 +54,8 @@
5854
<file role="doc" name="examples/certauth/certauth.php" />
5955
<file role="doc" name="examples/managers/UserManagement.php" />
6056
<file role="doc" name="examples/scan_consistency/request_plus.php" />
57+
<file role="doc" name="examples/search/index_management.php" />
58+
<file role="doc" name="examples/search/search.php" />
6159
<file role="doc" name="examples/subdoc/xattrs.php" />
6260
<file role="doc" name="examples/transcoders/index.php" />
6361
<file role="doc" name="fastlz/LICENSE.txt" />
@@ -103,6 +101,7 @@
103101
<file role="src" name="src/couchbase/cluster.c" />
104102
<file role="src" name="src/couchbase/cluster_manager.c" />
105103
<file role="src" name="src/couchbase/cluster_manager/user_settings.c" />
104+
<file role="src" name="src/couchbase/search_index_manager.c" />
106105
<file role="src" name="src/couchbase/document.c" />
107106
<file role="src" name="src/couchbase/document_fragment.c" />
108107
<file role="src" name="src/couchbase/log_formatter.c" />
@@ -186,6 +185,27 @@
186185
<providesextension>couchbase</providesextension>
187186
<extsrcrelease/>
188187
<changelog>
188+
<release>
189+
<date>2018-07-05</date>
190+
<version>
191+
<release>2.5.0</release>
192+
<api>2.3.0</api>
193+
</version>
194+
<stability>
195+
<release>stable</release>
196+
<api>stable</api>
197+
</stability>
198+
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache V2
199+
</license>
200+
<notes>
201+
* PCBC-551: Do not complain about missing igbinary on start
202+
* PCBC-552: Pass logger to lcb_create to catch all log messages
203+
* PCBC-553: Check if crypto provider implements IV and signatures
204+
* PCBC-554: Fix search query descending order to use "desc"
205+
* PCBC-544: Implement CertAuthenticator for extra checks
206+
* Fixes for PHP 7.3
207+
</notes>
208+
</release>
189209
<release>
190210
<date>2018-06-07</date>
191211
<version>

php_couchbase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#ifndef PHP_COUCHBASE_H_
1818
#define PHP_COUCHBASE_H_
1919

20-
#define PHP_COUCHBASE_VERSION "2.5.0"
20+
#define PHP_COUCHBASE_VERSION "2.5.1"
2121
#define PHP_COUCHBASE_EXTNAME "couchbase"
2222

2323
extern zend_module_entry couchbase_module_entry;

0 commit comments

Comments
 (0)