Skip to content

Commit 2fd9ede

Browse files
committed
Preparing 2.0.1
1 parent 53f804a commit 2fd9ede

File tree

2 files changed

+26
-7
lines changed

2 files changed

+26
-7
lines changed

package.xml

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,21 @@
1616
<email>[email protected]</email>
1717
<active>yes</active>
1818
</lead>
19-
<date>2015-10-27</date>
20-
<time>10:42:29</time>
19+
<date>2016-03-01</date>
20+
<time>11:15:00</time>
2121
<version>
22-
<release>2.0.0</release>
23-
<api>2.0.0</api>
22+
<release>2.0.1</release>
23+
<api>2.0.1</api>
2424
</version>
2525
<stability>
2626
<release>beta</release>
2727
<api>beta</api>
2828
</stability>
2929
<license filesource="LICENSE">New BSD</license>
3030
<notes>
31-
- Release msgpack for PHP7
31+
- Fixed issue #82 (Check hash protection flag to avoid memory corruption)
32+
- Fixed Issue #80 (Serialized failed on unseted value)
33+
- When packing/unpacking a zend_object don't call magic methods __set/__get
3234
</notes>
3335
<contents>
3436
<dir name="/">
@@ -189,6 +191,24 @@
189191
<providesextension>msgpack</providesextension>
190192
<extsrcrelease />
191193
<changelog>
194+
<release>
195+
<date>2016-03-01</date>
196+
<version>
197+
<release>2.0.1</release>
198+
<api>2.0.1</api>
199+
</version>
200+
<stability>
201+
<release>beta</release>
202+
<api>beta</api>
203+
</stability>
204+
<license uri="http://www.php.net/license">PHP License</license>
205+
<notes>
206+
- Fixed issue #82 (Check hash protection flag to avoid memory corruption)
207+
- Fixed Issue #80 (Serialized failed on unseted value)
208+
- When packing/unpacking a zend_object don't call magic methods __set/__get
209+
</notes>
210+
</release>
211+
192212
<release>
193213
<date>2015-10-27</date>
194214
<version>
@@ -204,7 +224,6 @@
204224
- Release msgpack for PHP7
205225
</notes>
206226
</release>
207-
208227
<release>
209228
<date>2015-04-27</date>
210229
<version>

php_msgpack.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include "Zend/zend_smart_str.h" /* for smart_string */
55

6-
#define PHP_MSGPACK_VERSION "2.0.1-dev"
6+
#define PHP_MSGPACK_VERSION "2.0.1"
77

88
extern zend_module_entry msgpack_module_entry;
99
#define phpext_msgpack_ptr &msgpack_module_entry

0 commit comments

Comments
 (0)