Skip to content

Commit 002a025

Browse files
author
Michael Fero
committed
Updating cpp-driver requirement to v2.3.0
1 parent dd7e8d6 commit 002a025

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

ext/config.w32

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ ARG_ENABLE("cassandra", "Enable DataStax PHP Cassandra extension", "no");
44

55
// Establish the minimum Cassandra C/C++ driver version
66
var minimum_major = 2;
7-
var minimum_minor = 2;
8-
var minimum_patch = 2;
7+
var minimum_minor = 3;
8+
var minimum_patch = 0;
99
var minimum_version = minimum_major + "." + minimum_minor + "." + minimum_patch;
1010

1111
function compare_minimum_version(major, minor, patch) {

ext/php_cassandra.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
#define PHP_CASSANDRA_DEFAULT_LOG "cassandra.log"
3131
#define PHP_CASSANDRA_DEFAULT_LOG_LEVEL "ERROR"
3232

33-
#if CURRENT_CPP_DRIVER_VERSION < CPP_DRIVER_VERSION(2, 2, 2)
34-
#error C/C++ driver version 2.2.2 or greater required
33+
#if CURRENT_CPP_DRIVER_VERSION < CPP_DRIVER_VERSION(2, 3, 0)
34+
#error C/C++ driver version 2.3.0 or greater required
3535
#endif
3636

3737
static uv_once_t log_once = UV_ONCE_INIT;

ext/vc_build.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ SET MPIR_BRANCH_TAG_VERSION=2.7.2
117117
SET MPIR_SHA_CHANGESET=67d98ac
118118
SET PHP_REPOSITORY_URL=https://github.com/php/php-src.git
119119
SET PHP_DIRECTORY=php
120-
SET PHP_5_5_BRANCH_TAG_VERSION=php-5.5.32
121-
SET PHP_5_6_BRANCH_TAG_VERSION=php-5.6.18
122-
SET PHP_7_0_BRANCH_TAG_VERSION=php-7.0.3
120+
SET PHP_5_5_BRANCH_TAG_VERSION=php-5.5.36
121+
SET PHP_5_6_BRANCH_TAG_VERSION=php-5.6.22
122+
SET PHP_7_0_BRANCH_TAG_VERSION=php-7.0.7
123123
SET "SUPPORTED_PHP_VERSIONS=5_5 5_6 7_0"
124124
SET "SUPPORTED_PHP_DISPLAY_VERSIONS=5.5 5.6 7.0"
125125
SET "SUPPORTED_PHP_VISUAL_STUDIO_VERSIONS=2012 2012 2015"

lib/cpp-driver

Submodule cpp-driver updated 314 files

0 commit comments

Comments
 (0)