Skip to content

Commit

Permalink
Started updating artifacts for 1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenick committed Feb 4, 2016
1 parent 8a11a6a commit f266339
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 13 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# 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

# 1.0.1

Features:
Expand Down
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,24 @@ A modern, [feature-rich](features) and highly tunable PHP client library for [Ap

This is a wrapper around [the DataStax C/C++ Driver for Apache Cassandra and DataStax Enterprise](http://datastax.github.io/cpp-driver/).

* Binaries: [http://downloads.datastax.com/php-driver/1.0.0](http://downloads.datastax.com/php-driver/1.0.0/)
* Binaries: [http://downloads.datastax.com/php-driver/1.1.0](http://downloads.datastax.com/php-driver/1.1.0/)
* Docs: [http://datastax.github.io/php-driver/](http://datastax.github.io/php-driver/)
* Code: [https://github.com/datastax/php-driver](https://github.com/datastax/php-driver)
* Jira: [https://datastax-oss.atlassian.net/browse/PHP](https://datastax-oss.atlassian.net/browse/PHP)
* Mailing List: [https://groups.google.com/a/lists.datastax.com/forum/#!forum/php-driver-user](https://groups.google.com/a/lists.datastax.com/forum/#!forum/php-driver-user)
* IRC: #datastax-drivers on [irc.freenode.net](http://freenode.net>)
* Twitter: Follow the latest news about DataStax Drivers - [@avalanche123](http://twitter.com/avalanche123), [@al3xandru](https://twitter.com/al3xandru)

## What's new in v1.0.0:
## What's new in v1.1.0:

* [Schema Metadata API](http://datastax.github.io/php-driver/features/#schema-metadata).
* [Type Metadata API](http://datastax.github.io/php-driver/features/#data-types).
* Support for PHP 7
* [User defined types]()
* [Tuples]()
* [Nested collection]()
* [Client-side timestamps]()
* [Retry policies]()
* [Named parameters]()
* [Raw paging token access]()

## Feedback Requested

Expand Down Expand Up @@ -57,7 +63,7 @@ Cassandra's native protocol. The current version works with:

* Apache Cassandra versions 1.2, 2.0 and partially 2.1
* DataStax Enterprise 3.1, 3.2, 4.0 and 4.5
* PHP 5.5+
* PHP 5.5+ and PHP 7.0+
* Compilers: GCC 4.1.2+, Clang 3.4+, and MSVC 2010/2012/2013/2015

__NOTE__: Apache Cassandra 2.1 support is limited to the Cassandra 2.0 API (native protocol v2), e.g. no user-defined types.
Expand Down
6 changes: 3 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ Cassandra and DataStax Enterprise using exclusively Cassandra's binary
protocol and Cassandra Query Language v3.
</description>
<lead>
<name>Bulat Shakirzyanov</name>
<user>avalanche123</user>
<email>bulat.shakirzyanov@datastax.com</email>
<name>Michael Penick</name>
<user>mpenick</user>
<email>michael.penick@datastax.com</email>
<active>yes</active>
</lead>
<date><%= timestamp.strftime('%Y-%m-%d') %></date>
Expand Down
5 changes: 5 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
"homepage": "http://datastax.github.io/php-driver/",
"license": "Apache-2.0",
"authors": [
{
"name": "Michael Penick",
"email": "[email protected]",
"homepage": "https://github.com/mpenick"
},
{
"name": "Bulat Shakirzyanov",
"email": "[email protected]",
Expand Down
10 changes: 5 additions & 5 deletions ext/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ Cassandra and DataStax Enterprise using exclusively Cassandra's binary
protocol and Cassandra Query Language v3.
</description>
<lead>
<name>Bulat Shakirzyanov</name>
<user>avalanche123</user>
<email>bulat.shakirzyanov@datastax.com</email>
<name>Michael Penick</name>
<user>mpenick</user>
<email>michael.penick@datastax.com</email>
<active>yes</active>
</lead>
<date>2016-02-01</date>
<time>19:35:01</time>
<date>2016-02-04</date>
<time>11:17:33</time>
<version>
<release>1.1.0-dev</release>
<api>1.1.0-dev</api>
Expand Down

0 comments on commit f266339

Please sign in to comment.