Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,19 @@
<email>kjdev@php.net</email>
<active>yes</active>
</lead>
<date>2026-07-02</date>
<date>2026-08-13</date>
<version>
<release>0.17.0</release>
<api>0.17.0</api>
<release>0.18.0</release>
<api>0.18.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license>MIT</license>
<notes>
- add: MIME type exclusion for output compression (zstd.output_compression_exclude_types)
- add: explicit --enable-apcu / --disable-apcu config.m4 options
- fix: in-tree builds with apcu
- add: built-in list of uncompressible MIME types for transparent output compression
- add: negation tokens (!) in zstd.output_compression_exclude_types to compress a MIME type even though it is in the built-in list
</notes>
<contents>
<dir name="/">
Expand Down
2 changes: 1 addition & 1 deletion php_zstd.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#ifndef PHP_ZSTD_H
#define PHP_ZSTD_H

#define PHP_ZSTD_VERSION "0.17.0"
#define PHP_ZSTD_VERSION "0.18.0"
#define PHP_ZSTD_NS "Zstd"

extern zend_module_entry zstd_module_entry;
Expand Down
Loading