diff --git a/CHANGELOG.md b/CHANGELOG.md index c054fe7..63e0999 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.3] - 2017-08-16 +### Fixed +- Memory allocation bug on ppc64. @remicollet #88 + ## [1.2.2] - 2017-08-08 ### Fixed - Segfault in ds_htable_lookup_bucket_by_hash. @gnoddep #86 diff --git a/README.md b/README.md index a9856bf..6cf942e 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Build Status](https://travis-ci.org/php-ds/extension.svg?branch=master)](https://travis-ci.org/php-ds/extension) [![Build status](https://ci.appveyor.com/api/projects/status/dbcssp6flml2gher?svg=true)](https://ci.appveyor.com/project/rtheunissen/extension) [![Code Coverage](https://scrutinizer-ci.com/g/php-ds/polyfill/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/php-ds/polyfill/?branch=master) -[![PECL](https://img.shields.io/badge/PECL-1.2.2-blue.svg)](https://pecl.php.net/package/ds) +[![PECL](https://img.shields.io/badge/PECL-1.2.3-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 1de3d6d..00bd51d 100644 --- a/package.xml +++ b/package.xml @@ -19,7 +19,7 @@ 2017-08-08 - 1.2.2 + 1.2.3 1.1.0 @@ -28,7 +28,7 @@ MIT License - - Segfault in ds_htable_lookup_bucket_by_hash. @gnoddep #86 + - Fixed memory allocation bug on ppc64. @remicollet #88 diff --git a/php_ds.h b/php_ds.h index 9214c00..227e505 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.2" +#define PHP_DS_VERSION "1.2.3" #ifdef PHP_WIN32 # define PHP_API __declspec(dllexport)