Skip to content

Commit 4bb4be2

Browse files
committed
v1.2.8
1 parent 3096126 commit 4bb4be2

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
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.8] - 2019-01-24
6+
### Fixed
7+
- Fixed buffer outflow during deserialization of map objects. #132 @rado-h
8+
59
## [1.2.7] - 2018-11-18
610
### Fixed
711
- Fixed pair reflection bugs. #119

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://travis-ci.org/php-ds/ext-ds.svg?branch=master)](https://travis-ci.org/php-ds/ext-ds)
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.2.7-blue.svg)](https://pecl.php.net/package/ds)
5+
[![PECL](https://img.shields.io/badge/PECL-1.2.8-blue.svg)](https://pecl.php.net/package/ds)
66

77
An extension providing 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 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-11-18</date>
20-
<time>12:31:19</time>
19+
<date>2019-01-24</date>
20+
<time>16:47:19</time>
2121
<version>
22-
<release>1.2.7</release>
22+
<release>1.2.8</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 pair reflection bugs. #119
31+
- Fixed buffer outflow during deserialization of map objects. @rado-h
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.7"
23+
#define PHP_DS_VERSION "1.2.8"
2424

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

0 commit comments

Comments
 (0)