diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2c1e8c212..3eb36b058 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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:
diff --git a/README.md b/README.md
index 5791a0b5f..320a6d0af 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@ 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)
@@ -14,10 +14,16 @@ This is a wrapper around [the DataStax C/C++ Driver for Apache Cassandra and Dat
* 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
@@ -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.
diff --git a/Rakefile b/Rakefile
index e9a90f974..f726f5af0 100755
--- a/Rakefile
+++ b/Rakefile
@@ -116,9 +116,9 @@ Cassandra and DataStax Enterprise using exclusively Cassandra's binary
protocol and Cassandra Query Language v3.
- Bulat Shakirzyanov
- avalanche123
- bulat.shakirzyanov@datastax.com
+ Michael Penick
+ mpenick
+ michael.penick@datastax.com
yes
<%= timestamp.strftime('%Y-%m-%d') %>
diff --git a/composer.json b/composer.json
index 9532b42b1..285e223d8 100644
--- a/composer.json
+++ b/composer.json
@@ -12,6 +12,11 @@
"homepage": "http://datastax.github.io/php-driver/",
"license": "Apache-2.0",
"authors": [
+ {
+ "name": "Michael Penick",
+ "email": "michael.penick@datastax.com",
+ "homepage": "https://github.com/mpenick"
+ },
{
"name": "Bulat Shakirzyanov",
"email": "bulat.shakirzyanov@datastax.com",
diff --git a/ext/package.xml b/ext/package.xml
index 38022de8e..822f1f787 100644
--- a/ext/package.xml
+++ b/ext/package.xml
@@ -9,13 +9,13 @@ Cassandra and DataStax Enterprise using exclusively Cassandra's binary
protocol and Cassandra Query Language v3.
- Bulat Shakirzyanov
- avalanche123
- bulat.shakirzyanov@datastax.com
+ Michael Penick
+ mpenick
+ michael.penick@datastax.com
yes
- 2016-02-01
-
+ 2016-02-04
+
1.1.0-dev
1.1.0-dev