Skip to content

Commit 7a0bbca

Browse files
committed
windows CI deploy
1 parent d565025 commit 7a0bbca

File tree

3 files changed

+38
-13
lines changed

3 files changed

+38
-13
lines changed

.appveyor.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,4 +230,13 @@ test_script:
230230
$here = (Get-Item -Path "." -Verbose).FullName
231231
$runner = 'c:\build-cache\php-sdk-' + $env:BIN_SDK_VER + '\phpsdk' + '-' + $env:VC + '-' + $env:ARCH + '.bat'
232232
$task = $here + '\task.bat'
233-
& $runner -t $task
233+
& $runner -t $task
234+
235+
deploy:
236+
provider: GitHub
237+
auth_token: $(GITHUB_OAUTH_TOKEN)
238+
description: 'PHP extension xlswriter windows release'
239+
draft: false
240+
prerelease: false
241+
on:
242+
APPVEYOR_REPO_TAG: true

package.xml

Lines changed: 27 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,23 +33,19 @@
3333
<email>[email protected]</email>
3434
<active>yes</active>
3535
</lead>
36-
<date>2020-03-19</date>
37-
<time>21:15:00</time>
36+
<date>2020-04-11</date>
37+
<time>22:00:00</time>
3838
<version>
39-
<release>1.3.4</release>
40-
<api>1.3.4</api>
39+
<release>1.3.4.1</release>
40+
<api>1.3.4.1</api>
4141
</version>
4242
<stability>
43-
<release>stable</release>
44-
<api>stable</api>
43+
<release>beta</release>
44+
<api>beta</api>
4545
</stability>
4646
<license uri="https://github.com/viest/php-ext-excel-export/blob/master/LICENSE">BSD license</license>
4747
<notes>
48-
- FEAT header support custom format.
49-
- FEAT putcsv custom delimiter.
50-
- FEAT ead skip cells,rows,empty value.
51-
- FIX read data method, the offset of the array index and the row of the cell.
52-
- FIX insertDate leaked.
48+
- Windows full function support.
5349
</notes>
5450
<contents>
5551
<dir name="/">
@@ -263,6 +259,26 @@
263259
<configureoption default="yes" name="enable-reader" prompt="enable reader supports?" />
264260
</extsrcrelease>
265261
<changelog>
262+
<release>
263+
<date>2020-03-19</date>
264+
<time>21:15:00</time>
265+
<version>
266+
<release>1.3.4</release>
267+
<api>1.3.4</api>
268+
</version>
269+
<stability>
270+
<release>stable</release>
271+
<api>stable</api>
272+
</stability>
273+
<license uri="https://github.com/viest/php-ext-excel-export/blob/master/LICENSE">BSD license</license>
274+
<notes>
275+
- FEAT header support custom format.
276+
- FEAT putcsv custom delimiter.
277+
- FEAT ead skip cells,rows,empty value.
278+
- FIX read data method, the offset of the array index and the row of the cell.
279+
- FIX insertDate leaked.
280+
</notes>
281+
</release>
266282
<release>
267283
<date>2019-12-31</date>
268284
<time>22: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.3.4"
21+
#define PHP_XLSWRITER_VERSION "1.3.4.1"
2222

2323
#ifdef PHP_WIN32
2424
# define PHP_VTIFUL_API __declspec(dllexport)

0 commit comments

Comments
 (0)