diff --git a/CHANGELOG.md b/CHANGELOG.md
index f8926c9..1a6b732 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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).
@@ -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`
diff --git a/README.md b/README.md
index 79c1685..ddf9df5 100644
--- a/README.md
+++ b/README.md
@@ -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.
@@ -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
diff --git a/package.xml b/package.xml
index d663a7c..b7a8db0 100644
--- a/package.xml
+++ b/package.xml
@@ -16,11 +16,11 @@
krakjoe@php.netyes
- 2016-08-09
-
+ 2016-09-01
+
- 1.1.4
- 1.1.4
+ 1.1.5
+ 1.1.5stable
@@ -28,7 +28,9 @@
MIT License
- Vector and Deque rotate crashing when empty (mod zero).
+ - phpinfo header
+ - ds_htable_put_distinct wasn't rehashing the correct bucket pointer
+ - Memory leaks
diff --git a/php_ds.h b/php_ds.h
index 0276d15..6d5629a 100644
--- a/php_ds.h
+++ b/php_ds.h
@@ -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)