diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1fab17f..452f7c3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,17 @@
+
+# [1.1.0](https://github.com/telefonicaid/tartare/compare/v1.0.3...v1.1.0) (2016-09-19)
+
+
+### Bug Fixes
+
+* `this` is not working on steps when the function is wrapped into a promise ([d722313](https://github.com/telefonicaid/tartare/commit/d722313))
+
+### Features
+
+* Add declarations to use Tartare with TypeScript ([ca80350](https://github.com/telefonicaid/tartare/commit/ca80350))
+
+
+
## [1.0.3](https://github.com/telefonicaid/tartare/compare/v1.0.2...v1.0.3) (2016-09-09)
diff --git a/ReleaseNotes.md b/ReleaseNotes.md
index c71448a..3bc16cb 100644
--- a/ReleaseNotes.md
+++ b/ReleaseNotes.md
@@ -1,5 +1,9 @@
# RELEASE NOTES
+## v1.1.0 / 19 Sep 2016
+* Added declarations to use Tartare with TypeScript.
+* Fixed a bug that prevented `this` from working on steps when the function is wrapped into a promise.
+
## v1.0.3 / 9 Sep 2016
* Fixed a bug that prevented Tartare from waiting for promises to be resolved when steps or hooks return promises.
diff --git a/package.json b/package.json
index 001d44c..d63e5cc 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "tartare",
- "version": "1.0.3",
+ "version": "1.1.0",
"description": "Gherkin-like BDD testing framework for JavaScript based on Mocha",
"license": "Apache-2.0",
"author": "Jose Antonio RodrÃguez Fernández ",