Skip to content

Commit 5a73530

Browse files
committed
Update to version 1.1.5
1 parent 59f59ff commit 5a73530

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
All notable changes to this project will be documented in this file.
33
This project follows [Semantic Versioning](http://semver.org/).
44

5+
## [1.1.5] - 2016-09-01
6+
### Fixed
7+
- `phpinfo` header
8+
- `ds_htable_put_distinct` wasn't rehashing the correct bucket pointer (Fixes #53)
9+
- Memory leaks.
10+
511
## [1.1.4] - 2016-08-09
612
### Fixed
713
- `Vector` and `Deque` rotate crashing when empty (mod zero).
@@ -44,7 +50,7 @@ This project follows [Semantic Versioning](http://semver.org/).
4450

4551
### Fixed
4652
- ds_htable_put_next bucket rehash fix
47-
-
53+
-
4854
## [1.0.2] - 2016-07-31
4955
### Added
5056
- `Map::putAll`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Build Status](https://travis-ci.org/php-ds/extension.svg?branch=master)](https://travis-ci.org/php-ds/extension)
44
[![Build status](https://ci.appveyor.com/api/projects/status/dbcssp6flml2gher?svg=true)](https://ci.appveyor.com/project/rtheunissen/extension)
55
[![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.4-blue.svg)](https://pecl.php.net/package/ds)
6+
[![PECL](https://img.shields.io/badge/PECL-1.1.5-blue.svg)](https://pecl.php.net/package/ds)
77

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

@@ -54,7 +54,7 @@ composer memtest # Run the tests checking for memory leaks
5454

5555
## Compatibility
5656

57-
It's highly recommended that you include the [polyfill](https://github.com/php-ds/polyfill) as a dependency in your project. This allows your codebase to still function in an environment where the extension is not installed.
57+
It's highly recommended that you include the [polyfill](https://github.com/php-ds/polyfill) as a dependency in your project. This allows your codebase to still function in an environment where the extension is not installed.
5858

5959
## Contributing
6060

package.xml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,21 @@
1616
<email>krakjoe@php.net</email>
1717
<active>yes</active>
1818
</lead>
19-
<date>2016-08-09</date>
20-
<time>01:00:00</time>
19+
<date>2016-09-01</date>
20+
<time>08:38:12</time>
2121
<version>
22-
<release>1.1.4</release>
23-
<api>1.1.4</api>
22+
<release>1.1.5</release>
23+
<api>1.1.5</api>
2424
</version>
2525
<stability>
2626
<release>stable</release>
2727
<api>stable</api>
2828
</stability>
2929
<license uri="https://opensource.org/licenses/MIT">MIT License</license>
3030
<notes>
31-
Vector and Deque rotate crashing when empty (mod zero).
31+
- phpinfo header
32+
- ds_htable_put_distinct wasn't rehashing the correct bucket pointer
33+
- Memory leaks
3234
</notes>
3335
<contents>
3436
<dir name="/">

php_ds.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ extern zend_module_entry ds_module_entry;
2020
#define phpext_ds_ptr &ds_module_entry
2121

2222
/* Replace with version number for your extension */
23-
#define PHP_DS_VERSION "1.1.4"
23+
#define PHP_DS_VERSION "1.1.5"
2424

2525
#ifdef PHP_WIN32
2626
# define PHP_API __declspec(dllexport)

0 commit comments

Comments
 (0)