Skip to content

Commit

Permalink
v1.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
rtheunissen committed Jan 25, 2019
1 parent 3096126 commit 4bb4be2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project follows [Semantic Versioning](http://semver.org/).

## [1.2.8] - 2019-01-24
### Fixed
- Fixed buffer outflow during deserialization of map objects. #132 @rado-h

## [1.2.7] - 2018-11-18
### Fixed
- Fixed pair reflection bugs. #119
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Build Status](https://travis-ci.org/php-ds/ext-ds.svg?branch=master)](https://travis-ci.org/php-ds/ext-ds)
[![Build status](https://ci.appveyor.com/api/projects/status/9w0xitp3q04hdu1d?svg=true)](https://ci.appveyor.com/project/rtheunissen/ext-ds)
[![PECL](https://img.shields.io/badge/PECL-1.2.7-blue.svg)](https://pecl.php.net/package/ds)
[![PECL](https://img.shields.io/badge/PECL-1.2.8-blue.svg)](https://pecl.php.net/package/ds)

An extension providing specialized data structures as efficient alternatives to the PHP array.
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.
Expand Down
8 changes: 4 additions & 4 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
<email>krakjoe@php.net</email>
<active>yes</active>
</lead>
<date>2018-11-18</date>
<time>12:31:19</time>
<date>2019-01-24</date>
<time>16:47:19</time>
<version>
<release>1.2.7</release>
<release>1.2.8</release>
<api>1.1.0</api>
</version>
<stability>
Expand All @@ -28,7 +28,7 @@
</stability>
<license uri="https://opensource.org/licenses/MIT">MIT License</license>
<notes>
- Fixed pair reflection bugs. #119
- Fixed buffer outflow during deserialization of map objects. @rado-h
</notes>
<contents>
<dir name="/">
Expand Down
2 changes: 1 addition & 1 deletion php_ds.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ extern zend_module_entry ds_module_entry;
#define phpext_ds_ptr &ds_module_entry

/* Replace with version number for your extension */
#define PHP_DS_VERSION "1.2.7"
#define PHP_DS_VERSION "1.2.8"

#ifdef PHP_WIN32
# define PHP_API __declspec(dllexport)
Expand Down

0 comments on commit 4bb4be2

Please sign in to comment.