Skip to content

Commit 83b993d

Browse files
authored
Merge pull request #471 from viest/dev
version 1.5.4
2 parents 8b8e483 + 119b188 commit 83b993d

File tree

3 files changed

+22
-7
lines changed

3 files changed

+22
-7
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
operating-system: [ubuntu-latest]
11-
php-versions: ['8.0']
11+
php-versions: ['8.0', '8.1', '8.2']
1212
include:
1313
- operating-system: 'ubuntu-18.04'
1414
php-versions: '7.0'

package.xml

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,18 @@
3333
<email>[email protected]</email>
3434
<active>yes</active>
3535
</lead>
36-
<date>2023-03-01</date>
36+
<date>2023-03-02</date>
3737
<time>00:00:00</time>
3838
<version>
39-
<release>1.5.3</release>
40-
<api>1.5.3</api>
39+
<release>1.5.4</release>
40+
<api>1.5.4</api>
4141
</version>
4242
<stability>
4343
<release>stable</release>
4444
<api>stable</api>
4545
</stability>
4646
<license uri="https://github.com/viest/php-ext-excel-export/blob/master/LICENSE">BSD license</license>
4747
<notes>
48-
- Feat: Print scale.
49-
- Feat: Border color.
5048
- Fix: PACKED array on PHP 8.2.
5149
</notes>
5250
<contents>
@@ -319,6 +317,23 @@
319317
<configureoption default="yes" name="enable-reader" prompt="enable reader supports?" />
320318
</extsrcrelease>
321319
<changelog>
320+
<release>
321+
<date>2023-03-01</date>
322+
<time>00:00:00</time>
323+
<version>
324+
<release>1.5.3</release>
325+
<api>1.5.3</api>
326+
</version>
327+
<stability>
328+
<release>stable</release>
329+
<api>stable</api>
330+
</stability>
331+
<license uri="https://github.com/viest/php-ext-excel-export/blob/master/LICENSE">BSD license</license>
332+
<notes>
333+
- Feat: Print scale.
334+
- Feat: Border color.
335+
</notes>
336+
</release>
322337
<release>
323338
<date>2022-05-01</date>
324339
<time>00:00:00</time>

php_xlswriter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
extern zend_module_entry xlswriter_module_entry;
1919
#define phpext_xlswriter_ptr &xlswriter_module_entry
2020

21-
#define PHP_XLSWRITER_VERSION "1.5.3"
21+
#define PHP_XLSWRITER_VERSION "1.5.4"
2222
#define PHP_XLSWRITER_AUTHOR "Jiexing.Wang ([email protected])"
2323

2424
#ifdef PHP_WIN32

0 commit comments

Comments
 (0)