[PECL-CVS] [pecl-mail-mailparse] master: bump version to 3.2.0-dev

[email protected] (Remi Collet) Mon, 6 Apr 2026 05:59:34 +0000
Newsgroups php.pecl.cvs
Message-ID <[email protected]>
Author: Remi Collet (remicollet)
Date: 2026-04-06T07:59:27+02:00

Commit: https://github.com/php/pecl-mail-mailparse/commit/9a4d3ca6c8e43ba0e1ac3e79fe0d689a2598bbae
Raw diff: https://github.com/php/pecl-mail-mailparse/commit/9a4d3ca6c8e43ba0e1ac3e79fe0d689a2598bbae.diff

bump version to 3.2.0-dev

Changed paths:
  M  composer.json
  M  package.xml
  M  php_mailparse.h


Diff:

diff --git a/composer.json b/composer.json
index 2a92302..a32c7c3 100644
--- a/composer.json
+++ b/composer.json
@@ -4,8 +4,7 @@
     "license": "PHP-3.01",
     "description": "Email message manipulation",
     "require": {
-        "php": ">= 7.3.0",
-        "ext-mbstring": "*"
+        "php": ">= 7.3.0"
     },
     "php-ext": {
         "extension-name": "mailparse",
diff --git a/package.xml b/package.xml
index 0fe7eea..3dacb3d 100644
--- a/package.xml
+++ b/package.xml
@@ -38,7 +38,7 @@ It can deal with rfc822 and rfc2045 (MIME) compliant messages.
  </lead>
  <date>2025-09-30</date>
  <version>
-  <release>3.1.9</release>
+  <release>3.2.0dev</release>
   <api>3.0</api>
  </version>
  <stability>
@@ -47,8 +47,9 @@ It can deal with rfc822 and rfc2045 (MIME) compliant messages.
  </stability>
  <license uri="https://www.php.net/license/3_01.txt" filesource="LICENSE">PHP-3.01</license>
  <notes>
-- use Zend/zend_smart_string.h for PHP 8.5
-- Fix memory leak
+- Vendor encoding conversion code from mbstring. (alexdowad)
+- Fix #44 Segmentation fault. (rlerdorf)
+- Fix #20 Unexpected parsed value of content-id. (rlerdorf)
  </notes>
  <contents>
   <dir name="/">
@@ -132,6 +133,22 @@ It can deal with rfc822 and rfc2045 (MIME) compliant messages.
  <providesextension>mailparse</providesextension>
  <extsrcrelease />
  <changelog>
+  <release>
+   <date>2025-09-30</date>
+   <version>
+    <release>3.1.9</release>
+    <api>3.0</api>
+   </version>
+   <stability>
+    <release>stable</release>
+    <api>stable</api>
+   </stability>
+   <license uri="https://www.php.net/license/3_01.txt" filesource="LICENSE">PHP-3.01</license>
+   <notes>
+- use Zend/zend_smart_string.h for PHP 8.5
+- Fix memory leak
+   </notes>
+  </release>
   <release>
    <date>2024-10-04</date>
    <version>
diff --git a/php_mailparse.h b/php_mailparse.h
index bf1ed13..1ce0752 100644
--- a/php_mailparse.h
+++ b/php_mailparse.h
@@ -22,7 +22,7 @@
 extern zend_module_entry mailparse_module_entry;
 #define phpext_mailparse_ptr &mailparse_module_entry
 
-#define PHP_MAILPARSE_VERSION "3.1.9"
+#define PHP_MAILPARSE_VERSION "3.2.0-dev"
 
 #ifdef PHP_WIN32
 #define PHP_MAILPARSE_API __declspec(dllexport)