release v0.2.1 v0.2.1
authorMichael Wallner <mike@php.net>
Tue, 31 May 2022 10:27:20 +0000 (12:27 +0200)
committerMichael Wallner <mike@php.net>
Tue, 31 May 2022 10:28:21 +0000 (12:28 +0200)
* Fix possible crash on unserializing uninitialized properties.

package.xml
php_ion.h

index e3f4ef8e18c06a004dd341bc93eb18d834c67b79..80c5fb60e33e3861bd8a13046d5a01370f3e0238 100644 (file)
@@ -20,9 +20,9 @@ https://awesomized.github.io/ext-ion/
   <email>mike@php.net</email>
   <active>yes</active>
  </lead>
- <date>2022-05-13</date>
+ <date>2022-05-31</date>
  <version>
-  <release>0.2.0</release>
+  <release>0.2.1</release>
   <api>0.2.0</api>
  </version>
  <stability>
@@ -31,20 +31,7 @@ https://awesomized.github.io/ext-ion/
  </stability>
  <license uri="http://copyfree.org/content/standard/licenses/2bsd/license.txt">BSD-2-Clause</license>
  <notes><![CDATA[
-* 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.
+* Fix possible crash on unserializing uninitialized properties.
 
 ]]></notes>
  <contents>
@@ -128,7 +115,8 @@ https://awesomized.github.io/ext-ion/
     <file role="test" name="serialize.phpt"/>
     <dir name="unserialize">
      <file role="test" name="multifield.phpt"/>
-     <file role="test" name="argtype.phpt"/>
+        <file role="test" name="argtype.phpt"/>
+        <file role="test" name="executor_globals.phpt"/>
      <file role="test" name="sid.phpt"/>
      <file role="test" name="invalid_annotation.phpt"/>
      <file role="test" name="multisequence.phpt"/>
index 6bad89f971cb7e662aa9823e474fdc56452d4c16..47b407725f5cdfc878ca1812e9ad51e24eb98343 100644 (file)
--- a/php_ion.h
+++ b/php_ion.h
@@ -16,7 +16,7 @@
 extern zend_module_entry ion_module_entry;
 # define phpext_ion_ptr &ion_module_entry
 
-# define PHP_ION_VERSION "0.3.0dev"
+# define PHP_ION_VERSION "0.2.1"
 
 # if defined(ZTS) && defined(COMPILE_DL_ION)
 ZEND_TSRMLS_CACHE_EXTERN()