Skip to content

Commit 7f462f5

Browse files
committed
Update release to v1.3.1
1 parent 99edb31 commit 7f462f5

File tree

3 files changed

+16
-23
lines changed

3 files changed

+16
-23
lines changed

ext/doc/Cassandra.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ final class Cassandra {
379379
/**
380380
* The current version of the extension.
381381
*/
382-
const VERSION = '1.3.0';
382+
const VERSION = '1.3.1';
383383

384384
/**
385385
* The version of the cpp-driver the extension is compiled against.

ext/package.xml

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -14,35 +14,29 @@ protocol and Cassandra Query Language v3.
1414
<email>[email protected]</email>
1515
<active>yes</active>
1616
</lead>
17-
<date>2017-03-16</date>
18-
<time>09:15:49</time>
17+
<date>2017-05-15</date>
18+
<time>16:28:29</time>
1919
<version>
20-
<release>1.3.0</release>
21-
<api>1.3.0</api>
20+
<release>1.3.1</release>
21+
<api>1.3.1</api>
2222
</version>
2323
<stability>
2424
<release>stable</release>
2525
<api>stable</api>
2626
</stability>
2727
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache License 2.0</license>
2828
<notes>
29-
# 1.3.0
29+
# 1.3.1
3030

31-
Features:
31+
Bug Fixes:
3232

33-
* Added support for the `duration` type
34-
* Added support to pass a query string directly to `Session::execute()` and
35-
`Session::executeAsync()`
36-
* `ExecutionOptions` has been deprecated in favor of using an array
33+
* [PHP-170] Duration nanos should support a signed 64-bit range
3734

38-
Bug Fixes:
39-
* [PHP-86] Decimal __toString method
40-
* [PHP-109] Cassandra solr_query not working after upgrading to DSE 5
41-
* [PHP-114] pecl install compiler output is dominated by C90 warnings
42-
* [PHP-119] Driver crashes upon getting type of column
43-
* [PHP-143] Memory leak in `FutureSession`
44-
* [PHP-144] Fix persistent sessions reference counting issue
45-
* [PHP-147] Unable to create Bigint with PHP_INT_MIN
35+
Documentation:
36+
37+
* [PHP-184] Remove {@inheritDoc} from method parameters
38+
* [PHP-183] Remove references to SimpleStatement and ExecutionOptions from docs,
39+
features, and most tests
4640
</notes>
4741
<contents>
4842
<dir name="/">
@@ -259,7 +253,6 @@ Bug Fixes:
259253
<file role="doc" name="doc/Cassandra/Function.php" />
260254
<file role="doc" name="doc/Cassandra/Future.php" />
261255
<file role="doc" name="doc/Cassandra/FutureClose.php" />
262-
<file role="doc" name="doc/Cassandra/FutureException.php" />
263256
<file role="doc" name="doc/Cassandra/FuturePreparedStatement.php" />
264257
<file role="doc" name="doc/Cassandra/FutureRows.php" />
265258
<file role="doc" name="doc/Cassandra/FutureSession.php" />

ext/version.h

Lines changed: 3 additions & 3 deletions
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 0
8+
#define PHP_DRIVER_RELEASE 1
99
#define PHP_DRIVER_STABILITY "stable"
10-
#define PHP_DRIVER_VERSION "1.3.0"
11-
#define PHP_DRIVER_VERSION_FULL "1.3.0"
10+
#define PHP_DRIVER_VERSION "1.3.1"
11+
#define PHP_DRIVER_VERSION_FULL "1.3.1"
1212

1313
#endif /* PHP_DRIVER_VERSION_H */

0 commit comments

Comments
 (0)