Skip to content

Commit

Permalink
Fixed 'package.xml' to include 'FutureRows.h'
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenick committed Jul 28, 2016
1 parent a4ae222 commit 181d9be
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 19 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.2.1

Bug Fixes:

* [PHP-113] pecl install of 1.2.0 fails because sourcecode is missing FutureRows.h

# 1.2.0

Features:
Expand Down
23 changes: 7 additions & 16 deletions ext/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,33 +14,23 @@ protocol and Cassandra Query Language v3.
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2016-07-18</date>
<time>11:29:26</time>
<date>2016-07-28</date>
<time>08:37:25</time>
<version>
<release>1.2.0</release>
<api>1.2.0</api>
<release>1.2.1</release>
<api>1.2.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache License 2.0</license>
<notes>
# 1.2.0

Features:

* Added support for `tinyint` and `smallint` types
* Added support for `date` and `time` types
* Added support for secondary index metadata
* Added support for UDF/UDA metadata
* Added support for materialized view metadata
* Added blacklist and whitelist datacenter and host policies
# 1.2.1

Bug Fixes:

* [PHP-100] Whitelist/Blacklist LB setting should update the cluster builder hash key
* [PHP-101] Memory leak when paging results
* [PHP-113] pecl install of 1.2.0 fails because sourcecode is missing FutureRows.h
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -113,6 +103,7 @@ Bug Fixes:
<file role="src" name="src/Cassandra/FutureClose.c" />
<file role="src" name="src/Cassandra/FuturePreparedStatement.c" />
<file role="src" name="src/Cassandra/FutureRows.c" />
<file role="src" name="src/Cassandra/FutureRows.h" />
<file role="src" name="src/Cassandra/FutureSession.c" />
<file role="src" name="src/Cassandra/FutureValue.c" />
<file role="src" name="src/Cassandra/Index.c" />
Expand Down
6 changes: 3 additions & 3 deletions ext/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
#define PHP_CASSANDRA_NAME "cassandra"
#define PHP_CASSANDRA_MAJOR 1
#define PHP_CASSANDRA_MINOR 2
#define PHP_CASSANDRA_RELEASE 0
#define PHP_CASSANDRA_RELEASE 1
#define PHP_CASSANDRA_STABILITY "stable"
#define PHP_CASSANDRA_VERSION "1.2.0"
#define PHP_CASSANDRA_VERSION_FULL "1.2.0"
#define PHP_CASSANDRA_VERSION "1.2.1"
#define PHP_CASSANDRA_VERSION_FULL "1.2.1"

#endif /* PHP_CASSANDRA_VERSION_H */

0 comments on commit 181d9be

Please sign in to comment.