diff --git a/CHANGELOG.md b/CHANGELOG.md index baa2897e1..2c1e8c212 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 1.0.1 + +Features: + +* Added support for the 2.2.x release of the C/C++ driver + +Bug Fixes: + +* [PHP-53] Error when inserting a "0" Decimal + # 1.0.0 Features: diff --git a/ext/package.xml b/ext/package.xml index d75584fc9..b0ee6ed25 100644 --- a/ext/package.xml +++ b/ext/package.xml @@ -14,11 +14,11 @@ protocol and Cassandra Query Language v3. bulat.shakirzyanov@datastax.com yes - 2015-09-14 - + 2015-11-20 + - 1.0.0 - 1.0.0 + 1.0.1 + 1.0.1 stable @@ -26,18 +26,15 @@ protocol and Cassandra Query Language v3. Apache License 2.0 -# 1.0.0 +# 1.0.1 Features: -* Added schema metadata support (via `Cassandra\Session::schema()`). -* Added types API (via `Cassandra\Type` static methods). +* Added support for the 2.2.x release of the C/C++ driver Bug Fixes: -* [PHP-40] Fixed invalid pointer being free'd -* [PHP-43] Fixed timeout handling in `Cassandra\ExecutionOptions` -* [PHP-44] Fixed memory leak +* [PHP-53] Error when inserting a "0" Decimal diff --git a/ext/version.h b/ext/version.h index 22d1a3744..ffce43df7 100644 --- a/ext/version.h +++ b/ext/version.h @@ -5,9 +5,9 @@ #define PHP_CASSANDRA_NAME "cassandra" #define PHP_CASSANDRA_MAJOR 1 #define PHP_CASSANDRA_MINOR 0 -#define PHP_CASSANDRA_RELEASE 0 +#define PHP_CASSANDRA_RELEASE 1 #define PHP_CASSANDRA_STABILITY "stable" -#define PHP_CASSANDRA_VERSION "1.0.0" -#define PHP_CASSANDRA_VERSION_FULL "1.0.0" +#define PHP_CASSANDRA_VERSION "1.0.1" +#define PHP_CASSANDRA_VERSION_FULL "1.0.1" #endif /* PHP_CASSANDRA_VERSION_H */