Skip to content

Commit fcfa451

Browse files
committed
back to dev
1 parent a6154ce commit fcfa451

File tree

6 files changed

+27
-12
lines changed

6 files changed

+27
-12
lines changed

package.xml

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</lead>
1919
<date>2020-06-05</date>
2020
<version>
21-
<release>1.19.0</release>
21+
<release>1.19.1dev</release>
2222
<api>2.8.0</api>
2323
</version>
2424
<stability>
@@ -27,11 +27,7 @@
2727
</stability>
2828
<license>PHP 3.01</license>
2929
<notes>
30-
- add ZipArchive::EM_TRAD_PKWARE and ZipArchive::EM_UNKNOWN constants
31-
- Fix #79424 don't use gl_pathc after call to globfree (Max Rees)
32-
- add ZipArchive::isCompressionMethodSupported() method (libzip 1.7.0)
33-
- add ZipArchive::isEncryptionMethodSupported() method (libzip 1.7.0)
34-
- initial PHP 8 support
30+
- encode parameter is optional (PHP 8)
3531
</notes>
3632
<contents>
3733
<dir name="/">
@@ -206,6 +202,25 @@
206202
<providesextension>zip</providesextension>
207203
<extsrcrelease/>
208204
<changelog>
205+
<release>
206+
<date>2020-06-05</date>
207+
<version>
208+
<release>1.19.0</release>
209+
<api>2.8.0</api>
210+
</version>
211+
<stability>
212+
<release>stable</release>
213+
<api>stable</api>
214+
</stability>
215+
<license>PHP 3.01</license>
216+
<notes>
217+
- add ZipArchive::EM_TRAD_PKWARE and ZipArchive::EM_UNKNOWN constants
218+
- Fix #79424 don't use gl_pathc after call to globfree (Max Rees)
219+
- add ZipArchive::isCompressionMethodSupported() method (libzip 1.7.0)
220+
- add ZipArchive::isEncryptionMethodSupported() method (libzip 1.7.0)
221+
- initial PHP 8 support
222+
</notes>
223+
</release>
209224
<release>
210225
<date>2020-03-20</date>
211226
<version>
@@ -218,7 +233,7 @@
218233
</stability>
219234
<license>PHP 3.01</license>
220235
<notes>
221-
- Fixed Bug #79296 ZipArchive::open fails on empty file with libzip 1.6.0.
236+
- Fixed Bug #79296 ZipArchive::open fails on empty file with libzip 1.6.0.
222237
</notes>
223238
</release>
224239
<release>

php5/php_zip.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ extern zend_module_entry zip_module_entry;
3333
#define ZIP_OVERWRITE ZIP_TRUNCATE
3434
#endif
3535

36-
#define PHP_ZIP_VERSION "1.19.0"
36+
#define PHP_ZIP_VERSION "1.19.1-dev"
3737

3838
/* {{{ ZIP_OPENBASEDIR_CHECKPATH(filename) */
3939
#define ZIP_OPENBASEDIR_CHECKPATH(filename) \

php7/php_zip.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ extern zend_module_entry zip_module_entry;
3333
#define ZIP_OVERWRITE ZIP_TRUNCATE
3434
#endif
3535

36-
#define PHP_ZIP_VERSION "1.19.0"
36+
#define PHP_ZIP_VERSION "1.19.1-dev"
3737

3838
#define ZIP_OPENBASEDIR_CHECKPATH(filename) php_check_open_basedir(filename)
3939

php73/php_zip.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ extern zend_module_entry zip_module_entry;
3333
#define ZIP_OVERWRITE ZIP_TRUNCATE
3434
#endif
3535

36-
#define PHP_ZIP_VERSION "1.19.0"
36+
#define PHP_ZIP_VERSION "1.19.1-dev"
3737

3838
#define ZIP_OPENBASEDIR_CHECKPATH(filename) php_check_open_basedir(filename)
3939

php74/php_zip.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ extern zend_module_entry zip_module_entry;
3333
#define ZIP_OVERWRITE ZIP_TRUNCATE
3434
#endif
3535

36-
#define PHP_ZIP_VERSION "1.19.0"
36+
#define PHP_ZIP_VERSION "1.19.1-dev"
3737

3838
#define ZIP_OPENBASEDIR_CHECKPATH(filename) php_check_open_basedir(filename)
3939

php8/php_zip.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ extern zend_module_entry zip_module_entry;
3131
#define ZIP_OVERWRITE ZIP_TRUNCATE
3232
#endif
3333

34-
#define PHP_ZIP_VERSION "1.19.0"
34+
#define PHP_ZIP_VERSION "1.19.1-dev"
3535

3636
#define ZIP_OPENBASEDIR_CHECKPATH(filename) php_check_open_basedir(filename)
3737

0 commit comments

Comments
 (0)