Skip to content

Commit

Permalink
Bump version to 1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
rtheunissen committed Mar 12, 2018
1 parent e793a2a commit 80572e4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 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.5] - 2018-03-13
### Fixed
- Buffer outflow during deserialization of objects. #111

## [1.2.4] - 2017-11-29
### Fixed
- Empty `PriorityQueue` causing segfault on `gc_collect_cycles`. #106
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Data Structures for PHP 7

[![Build Status](https://travis-ci.org/php-ds/extension.svg?branch=master)](https://travis-ci.org/php-ds/extension)
[![PECL](https://img.shields.io/badge/PECL-1.2.4-blue.svg)](https://pecl.php.net/package/ds)
[![PECL](https://img.shields.io/badge/PECL-1.2.5-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
6 changes: 3 additions & 3 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>2017-11-29</date>
<time>11:28:11</time>
<date>2018-03-13</date>
<time>00:03:14</time>
<version>
<release>1.2.4</release>
<release>1.2.5</release>
<api>1.1.0</api>
</version>
<stability>
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.4"
#define PHP_DS_VERSION "1.2.5"

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

0 comments on commit 80572e4

Please sign in to comment.