File tree Expand file tree Collapse file tree 5 files changed +24
-15
lines changed Expand file tree Collapse file tree 5 files changed +24
-15
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
All notable changes to this project will be documented in this file.
3
- This project follows [ Semantic Versioning] ( http://semver.org/ ) .
4
3
5
- ## [ Unreleased] - Future
6
- ### Changed
7
- - Min PHP version is 7.3
4
+ ## [ 1.6.0] - 2025-05-02
5
+ ### Added
6
+ - Support for PHP 8.4 @simPod
7
+
8
+ ## [ 1.5.0] - 2023-12-19
9
+ ### Fixed
10
+ - Support for PHP 8.3
11
+ - Fix #194 @nielsdos
12
+ - Fix #200 @nielsdos
13
+
14
+ ## [ 1.4.0] - 2021-12-13
15
+ ### Fixed
16
+ - ArrayAccess implemented consistently
17
+ - IteratorAggregate implemented consistently
18
+ - A few incorrect return types
8
19
9
20
## [ 1.3.0] - 2020-10-13
10
21
### Fixed
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ Build Status] ( https://github.com/php-ds/ext-ds/workflows/CI/badge.svg )] ( https://github.com/php-ds/ext-ds/actions?query=workflow%3A%22CI%22+branch%3Amaster )
4
4
[ ![ Build status] ( https://ci.appveyor.com/api/projects/status/9w0xitp3q04hdu1d?svg=true )] ( https://ci.appveyor.com/project/rtheunissen/ext-ds )
5
- [ ![ PECL] ( https://img.shields.io/badge/PECL-1.5 .0-blue.svg )] ( https://pecl.php.net/package/ds )
5
+ [ ![ PECL] ( https://img.shields.io/badge/PECL-1.6 .0-blue.svg )] ( https://pecl.php.net/package/ds )
6
6
7
7
A PHP language extension that provides specialized data structures as efficient alternatives to the PHP array.
8
8
You can read about it in more detail [ in this blog post] ( https://medium.com/p/9dda7af674cd ) which highlights the API, performance (relative to PHP 7) and other benefits of using the extension.
Original file line number Diff line number Diff line change 10
10
],
11
11
"minimum-stability" : " dev" ,
12
12
"require-dev" : {
13
- "php-ds/tests" : " ^1.5.0 "
13
+ "php-ds/tests" : " ^1.5"
14
14
},
15
15
"scripts" : {
16
16
"test" : " php test.php" ,
Original file line number Diff line number Diff line change 3
3
<name >ds</name >
4
4
<channel >pecl.php.net</channel >
5
5
<summary >Data Structures</summary >
6
- <description >Data Structures for PHP 7 </description >
6
+ <description >Data Structures for PHP</description >
7
7
<lead >
8
8
<name >Rudi Theunissen</name >
9
9
<user >rtheunissen</user >
16
16
<email >krakjoe@php.net</email >
17
17
<active >yes</active >
18
18
</lead >
19
- <date >2023-12-19 </date >
20
- <time >17:53:14 </time >
19
+ <date >2025-05-02 </date >
20
+ <time >09:38:00 </time >
21
21
<version >
22
- <release >1.5 .0</release >
23
- <api >1.5 .0</api >
22
+ <release >1.6 .0</release >
23
+ <api >1.6 .0</api >
24
24
</version >
25
25
<stability >
26
26
<release >stable</release >
27
27
<api >stable</api >
28
28
</stability >
29
29
<license uri =" https://opensource.org/licenses/MIT" >MIT License</license >
30
30
<notes >
31
- - Support for PHP 8.3
32
- - Fix #194 @nielsdos
33
- - Fix #200 @nielsdos
31
+ - Support for PHP 8.4 @simPod
34
32
</notes >
35
33
<contents >
36
34
<dir name =" /" >
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ extern zend_module_entry ds_module_entry;
20
20
#define phpext_ds_ptr &ds_module_entry
21
21
22
22
/* Replace with version number for your extension */
23
- #define PHP_DS_VERSION "1.5 .0"
23
+ #define PHP_DS_VERSION "1.6 .0"
24
24
25
25
#ifdef PHP_WIN32
26
26
# define PHP_API __declspec(dllexport)
You can’t perform that action at this time.
0 commit comments