File tree Expand file tree Collapse file tree 4 files changed +11
-9
lines changed Expand file tree Collapse file tree 4 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file.
3
3
This project follows [ Semantic Versioning] ( http://semver.org/ ) .
4
4
5
+ ## [ 1.1.6] - 2016-09-03
6
+ ### Fixed
7
+ - ` Map ` truncating to capacity less than the minimum.
8
+
5
9
## [ 1.1.5] - 2016-09-01
6
10
### Fixed
7
11
- ` phpinfo ` header
Original file line number Diff line number Diff line change 3
3
[ ![ Build Status] ( https://travis-ci.org/php-ds/extension.svg?branch=master )] ( https://travis-ci.org/php-ds/extension )
4
4
[ ![ Build status] ( https://ci.appveyor.com/api/projects/status/dbcssp6flml2gher?svg=true )] ( https://ci.appveyor.com/project/rtheunissen/extension )
5
5
[ ![ 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 )
6
- [ ![ PECL] ( https://img.shields.io/badge/PECL-1.1.5 -blue.svg )] ( https://pecl.php.net/package/ds )
6
+ [ ![ PECL] ( https://img.shields.io/badge/PECL-1.1.6 -blue.svg )] ( https://pecl.php.net/package/ds )
7
7
8
8
An extension providing specialized data structures as efficient alternatives to the PHP array.
9
9
Original file line number Diff line number Diff line change 16
16
17
17
<active >yes</active >
18
18
</lead >
19
- <date >2016-09-01 </date >
20
- <time >08:38:12 </time >
19
+ <date >2016-09-03 </date >
20
+ <time >22:20:14 </time >
21
21
<version >
22
- <release >1.1.5 </release >
23
- <api >1.1.5 </api >
22
+ <release >1.1.6 </release >
23
+ <api >1.1.0 </api >
24
24
</version >
25
25
<stability >
26
26
<release >stable</release >
27
27
<api >stable</api >
28
28
</stability >
29
29
<license uri =" https://opensource.org/licenses/MIT" >MIT License</license >
30
30
<notes >
31
- - phpinfo header
32
- - ds_htable_put_distinct wasn't rehashing the correct bucket pointer
33
- - Memory leaks
31
+ - Fix htable truncating capacity below minimum
34
32
</notes >
35
33
<contents >
36
34
<dir name =" /" >
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ extern zend_module_entry ds_module_entry;
20
20
#define phpext_ds_ptr &ds_module_entry
21
21
22
22
/* Replace with version number for your extension */
23
- #define PHP_DS_VERSION "1.1.5 "
23
+ #define PHP_DS_VERSION "1.1.6 "
24
24
25
25
#ifdef PHP_WIN32
26
26
# define PHP_API __declspec(dllexport)
You can’t perform that action at this time.
0 commit comments