Skip to content

Commit f2dd28a

Browse files
Michael Feromikefero
Michael Fero
authored andcommitted
PHP-221 - Allow driver to build for all PHP 7.x releases
* Updated Apache Cassandra versions (behat)
1 parent 1689877 commit f2dd28a

File tree

4 files changed

+17
-59
lines changed

4 files changed

+17
-59
lines changed

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ end
152152
<required>
153153
<php>
154154
<min>5.6.0</min>
155-
<max>7.1.99</max>
155+
<max>7.99.99</max>
156156
</php>
157157
<pearinstaller>
158158
<min>1.4.8</min>

behat.yml

+4-26
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ default:
77
88
contexts:
99
- FeatureContext:
10-
cassandra_version: 3.11.0
10+
cassandra_version: "3.11.3"
1111

1212
cassandra-version-3.0:
1313
formatters:
@@ -18,7 +18,7 @@ cassandra-version-3.0:
1818
1919
contexts:
2020
- FeatureContext:
21-
cassandra_version: 3.0.14
21+
cassandra_version: "3.0.17"
2222

2323
cassandra-version-2.2:
2424
formatters:
@@ -29,7 +29,7 @@ cassandra-version-2.2:
2929
3030
contexts:
3131
- FeatureContext:
32-
cassandra_version: 2.2.10
32+
cassandra_version: "2.2.13"
3333

3434
cassandra-version-2.1:
3535
formatters:
@@ -40,26 +40,4 @@ cassandra-version-2.1:
4040
4141
contexts:
4242
- FeatureContext:
43-
cassandra_version: 2.1.18
44-
45-
cassandra-version-2.0:
46-
formatters:
47-
pretty: true
48-
suites:
49-
default:
50-
filters:
51-
52-
contexts:
53-
- FeatureContext:
54-
cassandra_version: 2.0.17
55-
56-
cassandra-version-1.2:
57-
formatters:
58-
pretty: true
59-
suites:
60-
default:
61-
filters:
62-
63-
contexts:
64-
- FeatureContext:
65-
cassandra_version: 1.2.19
43+
cassandra_version: "2.1.20"

ext/package.xml

+8-28
Original file line numberDiff line numberDiff line change
@@ -14,39 +14,19 @@ protocol and Cassandra Query Language v3.
1414
<email>[email protected]</email>
1515
<active>yes</active>
1616
</lead>
17-
<date>2017-08-11</date>
18-
<time>14:38:04</time>
17+
<date>2019-01-16</date>
18+
<time>21:05:52</time>
1919
<version>
20-
<release>1.3.2</release>
21-
<api>1.3.2</api>
20+
<release>1.3.3-dev</release>
21+
<api>1.3.3-dev</api>
2222
</version>
2323
<stability>
24-
<release>stable</release>
25-
<api>stable</api>
24+
<release>devel</release>
25+
<api>devel</api>
2626
</stability>
2727
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache License 2.0</license>
2828
<notes>
29-
# 1.3.2
30-
31-
Features:
32-
33-
* [PHP-155] Support for PHP 7.1
34-
35-
Bug Fixes:
36-
37-
* [PHP-189] Set of map : bad hash calculation
38-
* [PHP-172] php_driver_value_hash hashes IS_TRUE and IS_FALSE to 1 in PHP7
39-
* [PHP-163] Disable hostname resolution if compiling against libuv 0.10
40-
* [PHP-159] Driver version Number (composer)
41-
* [PHP-142] Memory Leak in Cassandra\Timestamp::toDateTime() and Cassandra\UserTypeValue::values()
42-
* [PHP-118] Unable to bind list values using global type constants
43-
44-
Documentation:
45-
46-
* [PHP-196] Update building and testing documentation
47-
* [PHP-191] Updates to README files
48-
* [PHP-117] Broken links in documentor-generated docs
49-
* [PHP-102] Documentation improvements
29+
# Official release under development
5030
</notes>
5131
<contents>
5232
<dir name="/">
@@ -318,7 +298,7 @@ Documentation:
318298
<required>
319299
<php>
320300
<min>5.6.0</min>
321-
<max>7.1.99</max>
301+
<max>7.99.99</max>
322302
</php>
323303
<pearinstaller>
324304
<min>1.4.8</min>

ext/version.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
#define PHP_DRIVER_NAME "cassandra"
66
#define PHP_DRIVER_MAJOR 1
77
#define PHP_DRIVER_MINOR 3
8-
#define PHP_DRIVER_RELEASE 2
9-
#define PHP_DRIVER_STABILITY "stable"
10-
#define PHP_DRIVER_VERSION "1.3.2"
11-
#define PHP_DRIVER_VERSION_FULL "1.3.2"
8+
#define PHP_DRIVER_RELEASE 3
9+
#define PHP_DRIVER_STABILITY "devel"
10+
#define PHP_DRIVER_VERSION "1.3.3-dev"
11+
#define PHP_DRIVER_VERSION_FULL "1.3.3-devel"
1212

1313
#endif /* PHP_DRIVER_VERSION_H */

0 commit comments

Comments
 (0)