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
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
experimental: [false]
include:
- php: '8.4'
- php: '8.6'
experimental: true
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: true
- name: Install PHP ${{ matrix.php }}
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,21 @@ jobs:
shell: cmd
strategy:
matrix:
version: ['8.3', '8.4']
arch: [x64, x86]
os: [windows-2022]
ts: [nts, zts]
version: ['8.3', '8.4', '8.5']
exclude:
- { version: '8.4', arch: x64, ts: zts }
- { version: '8.4', arch: x86, ts: nts }
- { version: '8.4', arch: x86, ts: zts }
runs-on: windows-latest
steps:
- name: Checkout memcached
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup PHP
id: setup-php
uses: php/setup-php-sdk@v0.10
uses: php/setup-php-sdk@v0.11
with:
version: ${{matrix.version}}
arch: ${{matrix.arch}}
Expand Down
24 changes: 20 additions & 4 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>mike@php.net</email>
<active>yes</active>
</lead>
<date>2024-10-17</date>
<date>2025-10-12</date>
<version>
<release>3.3.1dev</release>
<api>3.3.0</api>
<release>3.4.0</release>
<api>3.4.0</api>
</version>
<stability>
<release>beta</release>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
Expand Down Expand Up @@ -221,6 +221,22 @@ http://pear.php.net/dtd/package-2.0.xsd">
<configureoption name="enable-memcached-session" prompt="enable sessions" default="yes"/>
</extsrcrelease>
<changelog>
<release>
<date>2025-10-12</date>
<version>
<release>3.4.0</release>
<api>3.4.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- Use Zend/zend_smart_string.h for PHP 8.5 compatibility (#574)
- Use zen_ce_exception for PHP 8.5 compatibility (#573)
</notes>
</release>
<release>
<date>2024-10-17</date>
<version>
Expand Down