Skip to content

Commit 1c2ec07

Browse files
committed
Release 3.4.0 with tests for PHP 8.5
1 parent de7d53d commit 1c2ec07

File tree

3 files changed

+27
-10
lines changed

3 files changed

+27
-10
lines changed

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
12+
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
1313
experimental: [false]
1414
include:
15-
- php: '8.4'
15+
- php: '8.6'
1616
experimental: true
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
submodules: true
2222
- name: Install PHP ${{ matrix.php }}

.github/workflows/build-windows.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,21 @@ jobs:
77
shell: cmd
88
strategy:
99
matrix:
10-
version: ['8.3', '8.4']
1110
arch: [x64, x86]
11+
os: [windows-2022]
1212
ts: [nts, zts]
13+
version: ['8.3', '8.4', '8.5']
1314
exclude:
1415
- { version: '8.4', arch: x64, ts: zts }
1516
- { version: '8.4', arch: x86, ts: nts }
1617
- { version: '8.4', arch: x86, ts: zts }
1718
runs-on: windows-latest
1819
steps:
1920
- name: Checkout memcached
20-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2122
- name: Setup PHP
2223
id: setup-php
23-
uses: php/setup-php-sdk@v0.10
24+
uses: php/setup-php-sdk@v0.11
2425
with:
2526
version: ${{matrix.version}}
2627
arch: ${{matrix.arch}}

package.xml

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ http://pear.php.net/dtd/package-2.0.xsd">
3939
<email>[email protected]</email>
4040
<active>yes</active>
4141
</lead>
42-
<date>2024-10-17</date>
42+
<date>2025-10-12</date>
4343
<version>
44-
<release>3.3.1dev</release>
45-
<api>3.3.0</api>
44+
<release>3.4.0</release>
45+
<api>3.4.0</api>
4646
</version>
4747
<stability>
48-
<release>beta</release>
48+
<release>stable</release>
4949
<api>stable</api>
5050
</stability>
5151
<license uri="http://www.php.net/license">PHP</license>
@@ -221,6 +221,22 @@ http://pear.php.net/dtd/package-2.0.xsd">
221221
<configureoption name="enable-memcached-session" prompt="enable sessions" default="yes"/>
222222
</extsrcrelease>
223223
<changelog>
224+
<release>
225+
<date>2025-10-12</date>
226+
<version>
227+
<release>3.4.0</release>
228+
<api>3.4.0</api>
229+
</version>
230+
<stability>
231+
<release>stable</release>
232+
<api>stable</api>
233+
</stability>
234+
<license uri="http://www.php.net/license">PHP</license>
235+
<notes>
236+
- Use Zend/zend_smart_string.h for PHP 8.5 compatibility (#574)
237+
- Use zen_ce_exception for PHP 8.5 compatibility (#573)
238+
</notes>
239+
</release>
224240
<release>
225241
<date>2024-10-17</date>
226242
<version>

0 commit comments

Comments
 (0)