Skip to content

Commit 5556666

Browse files
committed
prepare for 0.5.7
1 parent 7b321ea commit 5556666

File tree

2 files changed

+42
-9
lines changed

2 files changed

+42
-9
lines changed

package.xml

Lines changed: 41 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,20 @@
1616
<email>[email protected]</email>
1717
<active>yes</active>
1818
</lead>
19-
<date>2015-04-27</date>
20-
<time>11:30:29</time>
19+
<date>2015-08-30</date>
20+
<time>16:00:00</time>
2121
<version>
22-
<release>0.5.6</release>
23-
<api>0.5.6</api>
22+
<release>0.5.7</release>
23+
<api>0.5.7</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-
- support str8 type (wudikua)
32-
- Fix a warning and a possible crash (Mike)
33-
- Fix crash with memcached (Mike)
31+
- Add support deserializing the bin format family
32+
- Implement Issue #49, implement the 'compatibility mode' mentioned in msgpack implementation guidelines
3433
</notes>
3534
<contents>
3635
<dir name="/">
@@ -250,6 +249,7 @@
250249
<file name="136.phpt" role="test" />
251250
<file name="136b.phpt" role="test" />
252251
<file name="137.phpt" role="test" />
252+
<file name="138.phpt" role="test" />
253253
<file name="bug006.phpt" role="test" />
254254
<file name="bug011.phpt" role="test" />
255255
<file name="bug012.phpt" role="test" />
@@ -269,6 +269,40 @@
269269
<providesextension>msgpack</providesextension>
270270
<extsrcrelease />
271271
<changelog>
272+
<release>
273+
<date>2015-08-30</date>
274+
<version>
275+
<release>0.5.7</release>
276+
<api>0.5.7</api>
277+
</version>
278+
<stability>
279+
<release>beta</release>
280+
<api>beta</api>
281+
</stability>
282+
<license uri="http://www.php.net/license">PHP License</license>
283+
<notes>
284+
- Add support deserializing the bin format family
285+
- Implement Issue #49, implement the 'compatibility mode' mentioned in msgpack implementation guidelines
286+
</notes>
287+
</release>
288+
289+
<release>
290+
<date>2015-04-27</date>
291+
<version>
292+
<release>0.5.6</release>
293+
<api>0.5.6</api>
294+
</version>
295+
<stability>
296+
<release>beta</release>
297+
<api>beta</api>
298+
</stability>
299+
<license uri="http://www.php.net/license">PHP License</license>
300+
<notes>
301+
- support str8 type (wudikua)
302+
- Fix a warning and a possible crash (Mike)
303+
- Fix crash with memcached (Mike)
304+
</notes>
305+
</release>
272306
<release>
273307
<date>2015-04-27</date>
274308
<version>
@@ -286,7 +320,6 @@
286320
- Fix crash with memcached (Mike)
287321
</notes>
288322
</release>
289-
290323
<release>
291324
<date>2013-02-19</date>
292325
<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 "ext/standard/php_smart_str.h" /* for smart_str */
55

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

88
extern zend_module_entry msgpack_module_entry;
99
#define phpext_msgpack_ptr &msgpack_module_entry

0 commit comments

Comments
 (0)