Skip to content

Commit 181d9be

Browse files
committed
Fixed 'package.xml' to include 'FutureRows.h'
1 parent a4ae222 commit 181d9be

File tree

3 files changed

+16
-19
lines changed

3 files changed

+16
-19
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 1.2.1
2+
3+
Bug Fixes:
4+
5+
* [PHP-113] pecl install of 1.2.0 fails because sourcecode is missing FutureRows.h
6+
17
# 1.2.0
28

39
Features:

ext/package.xml

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,33 +14,23 @@ protocol and Cassandra Query Language v3.
1414
<email>[email protected]</email>
1515
<active>yes</active>
1616
</lead>
17-
<date>2016-07-18</date>
18-
<time>11:29:26</time>
17+
<date>2016-07-28</date>
18+
<time>08:37:25</time>
1919
<version>
20-
<release>1.2.0</release>
21-
<api>1.2.0</api>
20+
<release>1.2.1</release>
21+
<api>1.2.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.2.0
30-
31-
Features:
32-
33-
* Added support for `tinyint` and `smallint` types
34-
* Added support for `date` and `time` types
35-
* Added support for secondary index metadata
36-
* Added support for UDF/UDA metadata
37-
* Added support for materialized view metadata
38-
* Added blacklist and whitelist datacenter and host policies
29+
# 1.2.1
3930

4031
Bug Fixes:
4132

42-
* [PHP-100] Whitelist/Blacklist LB setting should update the cluster builder hash key
43-
* [PHP-101] Memory leak when paging results
33+
* [PHP-113] pecl install of 1.2.0 fails because sourcecode is missing FutureRows.h
4434
</notes>
4535
<contents>
4636
<dir name="/">
@@ -113,6 +103,7 @@ Bug Fixes:
113103
<file role="src" name="src/Cassandra/FutureClose.c" />
114104
<file role="src" name="src/Cassandra/FuturePreparedStatement.c" />
115105
<file role="src" name="src/Cassandra/FutureRows.c" />
106+
<file role="src" name="src/Cassandra/FutureRows.h" />
116107
<file role="src" name="src/Cassandra/FutureSession.c" />
117108
<file role="src" name="src/Cassandra/FutureValue.c" />
118109
<file role="src" name="src/Cassandra/Index.c" />

ext/version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
#define PHP_CASSANDRA_NAME "cassandra"
66
#define PHP_CASSANDRA_MAJOR 1
77
#define PHP_CASSANDRA_MINOR 2
8-
#define PHP_CASSANDRA_RELEASE 0
8+
#define PHP_CASSANDRA_RELEASE 1
99
#define PHP_CASSANDRA_STABILITY "stable"
10-
#define PHP_CASSANDRA_VERSION "1.2.0"
11-
#define PHP_CASSANDRA_VERSION_FULL "1.2.0"
10+
#define PHP_CASSANDRA_VERSION "1.2.1"
11+
#define PHP_CASSANDRA_VERSION_FULL "1.2.1"
1212

1313
#endif /* PHP_CASSANDRA_VERSION_H */

0 commit comments

Comments
 (0)