Skip to content

Commit ffebea9

Browse files
committed
Tag 1.2.1
1 parent 64dcf5e commit ffebea9

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
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.2.1] - 2017-08-03
6+
### Changed
7+
- Minor capacity adjustments.
8+
59
## [1.2.0] - 2017-07-22
610
### Changed
711
- Vector's minimum and default capacity down from 10 to 8.

README.md

Lines changed: 1 addition & 1 deletion
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.2.0-blue.svg)](https://pecl.php.net/package/ds)
6+
[![PECL](https://img.shields.io/badge/PECL-1.2.1-blue.svg)](https://pecl.php.net/package/ds)
77

88
An extension providing specialized data structures as efficient alternatives to the PHP array.
99
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.

package.xml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
<email>[email protected]</email>
1717
<active>yes</active>
1818
</lead>
19-
<date>2017-07-22</date>
20-
<time>09:01:12</time>
19+
<date>2017-08-03</date>
20+
<time>09:02:11</time>
2121
<version>
22-
<release>1.2.0</release>
22+
<release>1.2.1</release>
2323
<api>1.1.0</api>
2424
</version>
2525
<stability>
@@ -28,9 +28,7 @@
2828
</stability>
2929
<license uri="https://opensource.org/licenses/MIT">MIT License</license>
3030
<notes>
31-
- Vector's minimum and default capacity down from 10 to 8.
32-
- Map and Set's minimum and default capacity down from 16 to 8.
33-
- Hash function of arrays is now the length of the array, so O(1).
31+
- Minor capacity adjustments
3432
</notes>
3533
<contents>
3634
<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.2.0"
23+
#define PHP_DS_VERSION "1.2.1"
2424

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

0 commit comments

Comments
 (0)