Skip to content

Commit

Permalink
1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rtheunissen committed Aug 8, 2016
1 parent 31ad1f7 commit ca80282
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 13 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,4 @@ before_script:
- echo "extension=ds.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini

script:
- composer test
- composer memtest
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
All notable changes to this project will be documented in this file.
This project follows [Semantic Versioning](http://semver.org/).

## [1.1.3] - UNRELEASED
## [1.1.3] - 2016-08-08
### Fixed
- [x] Memory leaks during map when callback throws an exception.
- [x] Memory leaks when structures contain themselves.
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,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)
[![PECL](https://img.shields.io/badge/PECL-1.1.2-blue.svg)](https://pecl.php.net/package/ds)
[![PECL](https://img.shields.io/badge/PECL-1.1.3-blue.svg)](https://pecl.php.net/package/ds)

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

Expand Down
18 changes: 9 additions & 9 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,26 @@
<email>krakjoe@php.net</email>
<active>yes</active>
</lead>
<date>2016-08-05</date>
<time>11:02:12</time>
<date>2016-08-08</date>
<time>13:51:10</time>
<version>
<release>1.1.2</release>
<api>1.1.0</api>
<release>1.1.3</release>
<api>1.1.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://opensource.org/licenses/MIT">MIT License</license>
<notes>
Fixed many memory leaks
Fixed json dependency
Minor performance improvements
Fixed memory leaks during map when callback throws an exception.
Fixed memory leaks when structures contain themselves.
Fixed module dependencies.
Version info in phpinfo()
</notes>
<contents>
<dir name="/">
<file role="doc" name="README.md"/>
<file role="doc" name="LICENSE.md"/>
<file role="doc" name="LICENSE"/>

<file role="src" name="config.m4"/>
<file role="src" name="config.w32"/>
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.2"
#define PHP_DS_VERSION "1.1.3"

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

0 comments on commit ca80282

Please sign in to comment.