Skip to content

Commit 1083e9c

Browse files
committed
Updated changlog and versions for 1.0.1 release
1 parent 6075658 commit 1083e9c

File tree

3 files changed

+20
-13
lines changed

3 files changed

+20
-13
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 1.0.1
2+
3+
Features:
4+
5+
* Added support for the 2.2.x release of the C/C++ driver
6+
7+
Bug Fixes:
8+
9+
* [PHP-53] Error when inserting a "0" Decimal
10+
111
# 1.0.0
212

313
Features:

ext/package.xml

+7-10
Original file line numberDiff line numberDiff line change
@@ -14,30 +14,27 @@ protocol and Cassandra Query Language v3.
1414
<email>[email protected]</email>
1515
<active>yes</active>
1616
</lead>
17-
<date>2015-09-14</date>
18-
<time>10:28:02</time>
17+
<date>2015-11-20</date>
18+
<time>12:39:30</time>
1919
<version>
20-
<release>1.0.0</release>
21-
<api>1.0.0</api>
20+
<release>1.0.1</release>
21+
<api>1.0.1</api>
2222
</version>
2323
<stability>
2424
<release>stable</release>
2525
<api>stable</api>
2626
</stability>
2727
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache License 2.0</license>
2828
<notes>
29-
# 1.0.0
29+
# 1.0.1
3030

3131
Features:
3232

33-
* Added schema metadata support (via `Cassandra\Session::schema()`).
34-
* Added types API (via `Cassandra\Type` static methods).
33+
* Added support for the 2.2.x release of the C/C++ driver
3534

3635
Bug Fixes:
3736

38-
* [PHP-40] Fixed invalid pointer being free'd
39-
* [PHP-43] Fixed timeout handling in `Cassandra\ExecutionOptions`
40-
* [PHP-44] Fixed memory leak
37+
* [PHP-53] Error when inserting a "0" Decimal
4138
</notes>
4239
<contents>
4340
<dir name="/">

ext/version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
#define PHP_CASSANDRA_NAME "cassandra"
66
#define PHP_CASSANDRA_MAJOR 1
77
#define PHP_CASSANDRA_MINOR 0
8-
#define PHP_CASSANDRA_RELEASE 0
8+
#define PHP_CASSANDRA_RELEASE 1
99
#define PHP_CASSANDRA_STABILITY "stable"
10-
#define PHP_CASSANDRA_VERSION "1.0.0"
11-
#define PHP_CASSANDRA_VERSION_FULL "1.0.0"
10+
#define PHP_CASSANDRA_VERSION "1.0.1"
11+
#define PHP_CASSANDRA_VERSION_FULL "1.0.1"
1212

1313
#endif /* PHP_CASSANDRA_VERSION_H */

0 commit comments

Comments
 (0)