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 11# Change Log
22All notable changes to this project will be documented in this file.
3- This project follows [ Semantic Versioning] ( http://semver.org/ ) .
43
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
819
920## [ 1.3.0] - 2020-10-13
1021### Fixed
Original file line number Diff line number Diff line change 22
33[ ![ 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 )
44[ ![ 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 )
66
77A PHP language extension that provides specialized data structures as efficient alternatives to the PHP array.
88You 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 1010 ],
1111 "minimum-stability" : " dev" ,
1212 "require-dev" : {
13- "php-ds/tests" : " ^1.5.0 "
13+ "php-ds/tests" : " ^1.5"
1414 },
1515 "scripts" : {
1616 "test" : " php test.php" ,
Original file line number Diff line number Diff line change 33 <name >ds</name >
44 <channel >pecl.php.net</channel >
55 <summary >Data Structures</summary >
6- <description >Data Structures for PHP 7 </description >
6+ <description >Data Structures for PHP</description >
77 <lead >
88 <name >Rudi Theunissen</name >
99 <user >rtheunissen</user >
16161717 <active >yes</active >
1818 </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 >
2121 <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 >
2424 </version >
2525 <stability >
2626 <release >stable</release >
2727 <api >stable</api >
2828 </stability >
2929 <license uri =" https://opensource.org/licenses/MIT" >MIT License</license >
3030 <notes >
31- - Support for PHP 8.3
32- - Fix #194 @nielsdos
33- - Fix #200 @nielsdos
31+ - Support for PHP 8.4 @simPod
3432 </notes >
3533 <contents >
3634 <dir name =" /" >
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ extern zend_module_entry ds_module_entry;
2020#define phpext_ds_ptr &ds_module_entry
2121
2222/* Replace with version number for your extension */
23- #define PHP_DS_VERSION "1.5 .0"
23+ #define PHP_DS_VERSION "1.6 .0"
2424
2525#ifdef PHP_WIN32
2626# define PHP_API __declspec(dllexport)
You can’t perform that action at this time.
0 commit comments