From 80572e4fef2a7b851ab46e26fd4357a9563b060f Mon Sep 17 00:00:00 2001 From: Rudi Theunissen Date: Tue, 13 Mar 2018 00:23:32 +1300 Subject: [PATCH] Bump version to 1.2.5 --- CHANGELOG.md | 4 ++++ README.md | 2 +- package.xml | 6 +++--- php_ds.h | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a2efc9..06f8f94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index f35cc14..63502ef 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/package.xml b/package.xml index bbfb101..81a59ad 100644 --- a/package.xml +++ b/package.xml @@ -16,10 +16,10 @@ krakjoe@php.net yes - 2017-11-29 - + 2018-03-13 + - 1.2.4 + 1.2.5 1.1.0 diff --git a/php_ds.h b/php_ds.h index 86d90a6..9bf11d5 100644 --- a/php_ds.h +++ b/php_ds.h @@ -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)