Skip to content

Commit

Permalink
1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rtheunissen committed Sep 3, 2016
1 parent a9428f5 commit 3bf4421
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 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.1.6] - 2016-09-03
### Fixed
- `Map` truncating to capacity less than the minimum.

## [1.1.5] - 2016-09-01
### Fixed
- `phpinfo` header
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.5-blue.svg)](https://pecl.php.net/package/ds)
[![PECL](https://img.shields.io/badge/PECL-1.1.6-blue.svg)](https://pecl.php.net/package/ds)

An extension providing specialized data structures as efficient alternatives to the PHP array.

Expand Down
12 changes: 5 additions & 7 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,19 @@
<email>krakjoe@php.net</email>
<active>yes</active>
</lead>
<date>2016-09-01</date>
<time>08:38:12</time>
<date>2016-09-03</date>
<time>22:20:14</time>
<version>
<release>1.1.5</release>
<api>1.1.5</api>
<release>1.1.6</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://opensource.org/licenses/MIT">MIT License</license>
<notes>
- phpinfo header
- ds_htable_put_distinct wasn't rehashing the correct bucket pointer
- Memory leaks
- Fix htable truncating capacity below minimum
</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.1.5"
#define PHP_DS_VERSION "1.1.6"

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

0 comments on commit 3bf4421

Please sign in to comment.