Skip to content

Commit

Permalink
Updated package for release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenick committed Feb 11, 2016
1 parent 97f5867 commit f91f2bb
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ end
<dependencies>
<required>
<php>
<min>5.3.4</min>
<min>5.5.0</min>
<max>7.0.99</max>
</php>
<pearinstaller>
Expand Down
48 changes: 40 additions & 8 deletions ext/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,35 @@ protocol and Cassandra Query Language v3.
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2016-02-04</date>
<time>11:17:33</time>
<date>2016-02-11</date>
<time>10:16:05</time>
<version>
<release>1.1.0-dev</release>
<api>1.1.0-dev</api>
<release>1.1.0</release>
<api>1.1.0</api>
</version>
<stability>
<release>devel</release>
<api>devel</api>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache License 2.0</license>
<notes>
# Official release under development
# 1.1.0

Features:

* Added support for PHP 7
* Added support for UDTs and tuples
* Added support for nested collections
* Added access to raw paging token (via `Cassandra\Rows::pagingStateToken()`)
* Added support for client-side timestamps and timestamp generators
* Added support for retry policys (includes logging, downgrading and fallthrough)
* Added the ability to disable schema metadata updates (via `Cassandra\Cluster\withSchemaMetdata()`)
* Added support for using named arguments with `Cassandra\SimpleStatement`
* Changed the default consistency to `LOCAL_ONE` (from `ONE`)

Bug Fixes:

* [PHP-70] Fixed invalid encoding of decimals and varints
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -95,6 +111,11 @@ protocol and Cassandra Query Language v3.
<file role="src" name="src/Cassandra/Map.h" />
<file role="src" name="src/Cassandra/Numeric.c" />
<file role="src" name="src/Cassandra/PreparedStatement.c" />
<file role="src" name="src/Cassandra/RetryPolicy.c" />
<file role="src" name="src/Cassandra/RetryPolicy/DefaultPolicy.c" />
<file role="src" name="src/Cassandra/RetryPolicy/DowngradingConsistency.c" />
<file role="src" name="src/Cassandra/RetryPolicy/Fallthrough.c" />
<file role="src" name="src/Cassandra/RetryPolicy/Logging.c" />
<file role="src" name="src/Cassandra/Rows.c" />
<file role="src" name="src/Cassandra/SSLOptions.c" />
<file role="src" name="src/Cassandra/SSLOptions/Builder.c" />
Expand All @@ -107,6 +128,9 @@ protocol and Cassandra Query Language v3.
<file role="src" name="src/Cassandra/Table.c" />
<file role="src" name="src/Cassandra/Timestamp.c" />
<file role="src" name="src/Cassandra/Timestamp.h" />
<file role="src" name="src/Cassandra/TimestampGenerator.c" />
<file role="src" name="src/Cassandra/TimestampGenerator/Monotonic.c" />
<file role="src" name="src/Cassandra/TimestampGenerator/ServerSide.c" />
<file role="src" name="src/Cassandra/Timeuuid.c" />
<file role="src" name="src/Cassandra/Timeuuid.h" />
<file role="src" name="src/Cassandra/Tuple.c" />
Expand Down Expand Up @@ -208,6 +232,11 @@ protocol and Cassandra Query Language v3.
<file role="doc" name="doc/Cassandra/Map.php" />
<file role="doc" name="doc/Cassandra/Numeric.php" />
<file role="doc" name="doc/Cassandra/PreparedStatement.php" />
<file role="doc" name="doc/Cassandra/RetryPolicy.php" />
<file role="doc" name="doc/Cassandra/RetryPolicy/DefaultPolicy.php" />
<file role="doc" name="doc/Cassandra/RetryPolicy/DowngradingConsistency.php" />
<file role="doc" name="doc/Cassandra/RetryPolicy/Fallthrough.php" />
<file role="doc" name="doc/Cassandra/RetryPolicy/Logging.php" />
<file role="doc" name="doc/Cassandra/Rows.php" />
<file role="doc" name="doc/Cassandra/SSLOptions.php" />
<file role="doc" name="doc/Cassandra/SSLOptions/Builder.php" />
Expand All @@ -218,6 +247,9 @@ protocol and Cassandra Query Language v3.
<file role="doc" name="doc/Cassandra/Statement.php" />
<file role="doc" name="doc/Cassandra/Table.php" />
<file role="doc" name="doc/Cassandra/Timestamp.php" />
<file role="doc" name="doc/Cassandra/TimestampGenerator.php" />
<file role="doc" name="doc/Cassandra/TimestampGenerator/Monotonic.php" />
<file role="doc" name="doc/Cassandra/TimestampGenerator/ServerSide.php" />
<file role="doc" name="doc/Cassandra/Timeuuid.php" />
<file role="doc" name="doc/Cassandra/Tuple.php" />
<file role="doc" name="doc/Cassandra/Type.php" />
Expand All @@ -240,7 +272,7 @@ protocol and Cassandra Query Language v3.
<dependencies>
<required>
<php>
<min>5.3.4</min>
<min>5.5.0</min>
<max>7.0.99</max>
</php>
<pearinstaller>
Expand Down
6 changes: 3 additions & 3 deletions ext/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
#define PHP_CASSANDRA_MAJOR 1
#define PHP_CASSANDRA_MINOR 1
#define PHP_CASSANDRA_RELEASE 0
#define PHP_CASSANDRA_STABILITY "devel"
#define PHP_CASSANDRA_VERSION "1.1.0-dev"
#define PHP_CASSANDRA_VERSION_FULL "1.1.0-devel"
#define PHP_CASSANDRA_STABILITY "stable"
#define PHP_CASSANDRA_VERSION "1.1.0"
#define PHP_CASSANDRA_VERSION_FULL "1.1.0"

#endif /* PHP_CASSANDRA_VERSION_H */

0 comments on commit f91f2bb

Please sign in to comment.