Skip to content

Commit 3a7476e

Browse files
committed
1.1.0
1 parent 0210a94 commit 3a7476e

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
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 adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [1.1.0] - 2016-08-04
6+
### Added
7+
- `Pair::copy`
8+
59
## [1.0.4] - 2016-08-01
610
### Fixed
711
- `unserialize` memory leak when failed to unserialize.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
],
1111
"require-dev": {
12-
"php-ds/tests": "dev-master"
12+
"php-ds/tests": "^1.1"
1313
},
1414
"scripts": {
1515
"test": "vendor/bin/phpunit -c ./vendor/php-ds/tests/phpunit.xml"

package.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,16 @@
1919
<date>2016-08-01</date>
2020
<time>17:52:00</time>
2121
<version>
22-
<release>1.0.4</release>
23-
<api>1.0.3</api>
22+
<release>1.1.0</release>
23+
<api>1.1.0</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-
Fix memory leak when unserialize fails
32-
Fix bad hash table bucket copy
31+
Add Pair::copy
3332
</notes>
3433
<contents>
3534
<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.0.4"
23+
#define PHP_DS_VERSION "1.1.0"
2424

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

0 commit comments

Comments
 (0)