Skip to content

Commit

Permalink
Update to version 1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
rtheunissen committed Aug 31, 2016
1 parent 59f59ff commit 5a73530
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
This project follows [Semantic Versioning](http://semver.org/).

## [1.1.5] - 2016-09-01
### Fixed
- `phpinfo` header
- `ds_htable_put_distinct` wasn't rehashing the correct bucket pointer (Fixes #53)
- Memory leaks.

## [1.1.4] - 2016-08-09
### Fixed
- `Vector` and `Deque` rotate crashing when empty (mod zero).
Expand Down Expand Up @@ -44,7 +50,7 @@ This project follows [Semantic Versioning](http://semver.org/).

### Fixed
- ds_htable_put_next bucket rehash fix
-
-
## [1.0.2] - 2016-07-31
### Added
- `Map::putAll`
4 changes: 2 additions & 2 deletions 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.4-blue.svg)](https://pecl.php.net/package/ds)
[![PECL](https://img.shields.io/badge/PECL-1.1.5-blue.svg)](https://pecl.php.net/package/ds)

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

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

## Compatibility

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.
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.

## Contributing

Expand Down
12 changes: 7 additions & 5 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,21 @@
<email>krakjoe@php.net</email>
<active>yes</active>
</lead>
<date>2016-08-09</date>
<time>01:00:00</time>
<date>2016-09-01</date>
<time>08:38:12</time>
<version>
<release>1.1.4</release>
<api>1.1.4</api>
<release>1.1.5</release>
<api>1.1.5</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://opensource.org/licenses/MIT">MIT License</license>
<notes>
Vector and Deque rotate crashing when empty (mod zero).
- phpinfo header
- ds_htable_put_distinct wasn't rehashing the correct bucket pointer
- Memory leaks
</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.4"
#define PHP_DS_VERSION "1.1.5"

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

0 comments on commit 5a73530

Please sign in to comment.