Skip to content

Commit 80572e4

Browse files
committed
Bump version to 1.2.5
1 parent e793a2a commit 80572e4

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
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.2.5] - 2018-03-13
6+
### Fixed
7+
- Buffer outflow during deserialization of objects. #111
8+
59
## [1.2.4] - 2017-11-29
610
### Fixed
711
- Empty `PriorityQueue` causing segfault on `gc_collect_cycles`. #106

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.4-blue.svg)](https://pecl.php.net/package/ds)
4+
[![PECL](https://img.shields.io/badge/PECL-1.2.5-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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
<email>[email protected]</email>
1717
<active>yes</active>
1818
</lead>
19-
<date>2017-11-29</date>
20-
<time>11:28:11</time>
19+
<date>2018-03-13</date>
20+
<time>00:03:14</time>
2121
<version>
22-
<release>1.2.4</release>
22+
<release>1.2.5</release>
2323
<api>1.1.0</api>
2424
</version>
2525
<stability>

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.4"
23+
#define PHP_DS_VERSION "1.2.5"
2424

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

0 commit comments

Comments
 (0)