Skip to content

Commit 35a46a0

Browse files
committed
v1.2.6
1 parent 13420ba commit 35a46a0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Data Structures for PHP 7
22

33
[![Build Status](https://travis-ci.org/php-ds/extension.svg?branch=master)](https://travis-ci.org/php-ds/extension)
4-
[![PECL](https://img.shields.io/badge/PECL-1.2.5-blue.svg)](https://pecl.php.net/package/ds)
4+
[![PECL](https://img.shields.io/badge/PECL-1.2.6-blue.svg)](https://pecl.php.net/package/ds)
55

66
An extension providing specialized data structures as efficient alternatives to the PHP array.
77
You can read about it in more detail [in this blog post](https://medium.com/p/9dda7af674cd) which highlights the API, performance and other benefits of using the extension.

package.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
<email>krakjoe@php.net</email>
1717
<active>yes</active>
1818
</lead>
19-
<date>2018-03-13</date>
20-
<time>00:03:14</time>
19+
<date>2018-05-24</date>
20+
<time>00:22:59</time>
2121
<version>
22-
<release>1.2.5</release>
22+
<release>1.2.6</release>
2323
<api>1.1.0</api>
2424
</version>
2525
<stability>
@@ -28,7 +28,7 @@
2828
</stability>
2929
<license uri="https://opensource.org/licenses/MIT">MIT License</license>
3030
<notes>
31-
- Fixed empty `PriorityQueue` causing segfault on `gc_collect_cycles`. #106
31+
- Fixed not clearing memory after buffer reallocation. #114
3232
</notes>
3333
<contents>
3434
<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.5"
23+
#define PHP_DS_VERSION "1.2.6"
2424

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

0 commit comments

Comments
 (0)