Skip to content

Commit 8b06d79

Browse files
committed
release v0.2.0
* Improved documentation. * Upgrade bundled ion-c library. * Fix gh-issue #5: ion\Timestamp crashes with string timezones. * Add ion\Exception. * Refactor (un)serialization facilities: * Removed ion\Reader\Options class and moved the options to the ion\Reader constructor. * Removed ion\Writer\Options class and moved the options to the ion\Writer constructor. * Renamed ion\Serializer\PHP to ion\Serializer\Serializer. * Renamed ion\Unserializer\PHP to ion\Unserializer\Unserializer. * Changed ion\Serializer::serialize(mixed $data) to ion\Serializer::serialize(mixed $data, ion\Writer|array|null $writer = null). * Changed ion\Unserializer::unserialize(string|resource $data) to ion\Unserializer::unserialize(ion\Reader|string|resource $data) * Add support for custom (un)serializers.
1 parent d901f11 commit 8b06d79

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

package.xml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ https://awesomized.github.io/ext-ion/
2020
<email>mike@php.net</email>
2121
<active>yes</active>
2222
</lead>
23-
<date>2022-02-01</date>
23+
<date>2022-05-13</date>
2424
<version>
2525
<release>0.2.0</release>
2626
<api>0.2.0</api>
@@ -31,7 +31,21 @@ https://awesomized.github.io/ext-ion/
3131
</stability>
3232
<license uri="http://copyfree.org/content/standard/licenses/2bsd/license.txt">BSD-2-Clause</license>
3333
<notes><![CDATA[
34-
* WIP
34+
* Improved documentation.
35+
* Upgrade bundled ion-c library.
36+
* Fix gh-issue #5: ion\Timestamp crashes with string timezones.
37+
* Add ion\Exception.
38+
* Refactor (un)serialization facilities:
39+
* Removed ion\Reader\Options class and moved the options to the ion\Reader constructor.
40+
* Removed ion\Writer\Options class and moved the options to the ion\Writer constructor.
41+
* Renamed ion\Serializer\PHP to ion\Serializer\Serializer.
42+
* Renamed ion\Unserializer\PHP to ion\Unserializer\Unserializer.
43+
* Changed ion\Serializer::serialize(mixed $data) to
44+
ion\Serializer::serialize(mixed $data, ion\Writer|array|null $writer = null).
45+
* Changed ion\Unserializer::unserialize(string|resource $data) to
46+
ion\Unserializer::unserialize(ion\Reader|string|resource $data)
47+
* Add support for custom (un)serializers.
48+
3549
]]></notes>
3650
<contents>
3751
<dir name="/">

php_ion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
extern zend_module_entry ion_module_entry;
1717
# define phpext_ion_ptr &ion_module_entry
1818

19-
# define PHP_ION_VERSION "0.2.0dev"
19+
# define PHP_ION_VERSION "0.2.0"
2020

2121
# if defined(ZTS) && defined(COMPILE_DL_ION)
2222
ZEND_TSRMLS_CACHE_EXTERN()

0 commit comments

Comments
 (0)