Skip to content

Commit

Permalink
1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rtheunissen committed Jul 22, 2017
1 parent 9ccc4ec commit 50d0231
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
6 changes: 6 additions & 0 deletions 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.2.0] - 2017-07-22
### Changed
- Vector's minimum and default capacity down from 10 to 8.
- Map and Set's minimum and default capacity down from 16 to 8.
- Hash function of arrays is now the length of the array, so O(1).

## [1.1.10] - 2017-06-22
### Fixed
- Using a key as reference not working correctly with array access. #86
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.10-blue.svg)](https://pecl.php.net/package/ds)
[![PECL](https://img.shields.io/badge/PECL-1.2.0-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.
Expand Down
8 changes: 5 additions & 3 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2017-04-26</date>
<date>2017-07-22</date>
<time>09:01:12</time>
<version>
<release>1.1.10</release>
<release>1.2.0</release>
<api>1.1.0</api>
</version>
<stability>
Expand All @@ -28,7 +28,9 @@
</stability>
<license uri="https://opensource.org/licenses/MIT">MIT License</license>
<notes>
- Fix using a key as reference not working correctly with array access. #86
- Vector's minimum and default capacity down from 10 to 8.
- Map and Set's minimum and default capacity down from 16 to 8.
- Hash function of arrays is now the length of the array, so O(1).
</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.10"
#define PHP_DS_VERSION "1.2.0"

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

0 comments on commit 50d0231

Please sign in to comment.