Skip to content

Commit 118c06b

Browse files
author
Rudi Theunissen
committed
v1.6.0
1 parent 75157d7 commit 118c06b

File tree

5 files changed

+24
-15
lines changed

5 files changed

+24
-15
lines changed

CHANGELOG.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
11
# Change Log
22
All 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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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

77
A PHP language extension that provides specialized data structures as efficient alternatives to the PHP array.
88
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.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
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",

package.xml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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>
@@ -16,21 +16,19 @@
1616
<email>krakjoe@php.net</email>
1717
<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="/">

php_ds.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)