Skip to content

Commit 3576d09

Browse files
committed
v1.3.0
1 parent b297e8f commit 3576d09

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
All notable changes to this project will be documented in this file.
33
This project follows [Semantic Versioning](http://semver.org/).
44

5+
## [1.3.0] - 2020-10-13
6+
### Fixed
7+
- ArrayAccess implemented consistently
8+
- IteratorAggregate implemented consistently
9+
- A few incorrect return types
10+
511
## [1.2.9] - 2019-05-11
612
### Fixed
713
- Segfault when iterating an implicit instance of Stack, Queue or PriorityQueue

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": "dev-master"
13+
"php-ds/tests": "^1.3.0"
1414
},
1515
"scripts": {
1616
"test" : "php test.php",

package.xml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,21 @@
1616
<email>[email protected]</email>
1717
<active>yes</active>
1818
</lead>
19-
<date>2019-05-11</date>
20-
<time>16:47:19</time>
19+
<date>2020-10-13</date>
20+
<time>21:24:19</time>
2121
<version>
22-
<release>1.2.9</release>
23-
<api>1.1.0</api>
22+
<release>1.3.0</release>
23+
<api>1.3.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-
- Segfault when iterating an implicit instance of Stack, Queue or PriorityQueue
31+
- ArrayAccess implemented consistently
32+
- IteratorAggregate implemented consistently
33+
- A few incorrect return types
3234
</notes>
3335
<contents>
3436
<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.2.9"
23+
#define PHP_DS_VERSION "1.3.0"
2424

2525
#ifdef PHP_WIN32
2626
# define PHP_API __declspec(dllexport)

0 commit comments

Comments
 (0)