Browse Source

1.3.7 beta

viest 4 years ago
parent
commit
5aebad7e18
3 changed files with 31 additions and 11 deletions
  1. 1 0
      .gitignore
  2. 29 10
      package.xml
  3. 1 1
      php_xlswriter.h

+ 1 - 0
.gitignore

@@ -45,3 +45,4 @@ cmake-build-debug
 CMakeLists.txt
 local_test.php
 xlswriter-*.tgz
+benchmark.c

+ 29 - 10
package.xml

@@ -33,11 +33,11 @@
   <email>[email protected]</email>
   <active>yes</active>
  </lead>
- <date>2020-06-17</date>
- <time>01:37:24</time>
+ <date>2020-08-18</date>
+ <time>18:00:00</time>
  <version>
-  <release>1.3.6</release>
-  <api>1.3.6</api>
+  <release>1.3.7</release>
+  <api>1.3.7</api>
  </version>
  <stability>
   <release>stable</release>
@@ -45,11 +45,10 @@
  </stability>
  <license uri="https://github.com/viest/php-ext-excel-export/blob/master/LICENSE">BSD license</license>
  <notes>
-- Fix musllibc.
-- Fix null in cell callback.
-- Feat cell comment.
-- Feat timestampFromDateDouble static method.
-- Feat Check for existence before opening file.
+- Fix IBM s390x.
+- Fix header line no and sheet checkout not init line no.
+- Feat set global type.
+- Feat url text and tool tip.
  </notes>
  <contents>
   <dir name="/">
@@ -283,6 +282,26 @@
   <configureoption default="yes" name="enable-reader" prompt="enable reader supports?" />
  </extsrcrelease>
  <changelog>
+  <release>
+   <date>2020-06-17</date>
+   <time>01:37:24</time>
+   <version>
+    <release>1.3.6</release>
+    <api>1.3.6</api>
+   </version>
+   <stability>
+    <release>stable</release>
+    <api>stable</api>
+   </stability>
+   <license uri="https://github.com/viest/php-ext-excel-export/blob/master/LICENSE">BSD license</license>
+   <notes>
+    - Fix musllibc.
+    - Fix null in cell callback.
+    - Feat cell comment.
+    - Feat timestampFromDateDouble static method.
+    - Feat Check for existence before opening file.
+   </notes>
+  </release>
   <release>
    <date>2020-06-08</date>
    <time>14:22:09</time>
@@ -332,7 +351,7 @@
    <notes>
 - FEAT header support custom format.
 - FEAT putcsv custom delimiter.
-- FEAT ead skip cells,rows,empty value.
+- FEAT read skip cells,rows,empty value.
 - FIX read data method, the offset of the array index and the row of the cell.
 - FIX insertDate leaked.
    </notes>

+ 1 - 1
php_xlswriter.h

@@ -18,7 +18,7 @@
 extern zend_module_entry xlswriter_module_entry;
 #define phpext_xlswriter_ptr &xlswriter_module_entry
 
-#define PHP_XLSWRITER_VERSION "1.3.6"
+#define PHP_XLSWRITER_VERSION "1.3.7"
 
 #ifdef PHP_WIN32
 #	define PHP_VTIFUL_API __declspec(dllexport)