diff --git a/CHANGELOG.md b/CHANGELOG.md
index 603055c..5615a1b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,45 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
+
+## [1.1.0](https://github.com/nuxt-community/nuxtent-module/compare/v1.0.2...v1.1.0) (2017-10-22)
+
+### Features
+
+* **config** add possibility to declare nuxtent options `api` key as a function
+ given the `isStatic` parameter to adjust Axios options when using `nuxt generate`, fixes [#92](https://github.com/nuxt-community/nuxtent-module/issues/92)
+
+```json
+{
+ content: {
+ page: '/_slug',
+ permalink: '/:year/:slug',
+ generate: ['get', 'getAll']
+ },
+ api: function(isStatic) {
+ return {
+ browserBaseURL: isStatic ? 'http://production-url.com' : ''
+ }
+ }
+}
+```
+
+* **config** all nuxtent options present in `api` key are now forwarded to `axios`
+
+* **module** allow `.yml` file extension for content files ([a6b240a](https://github.com/nuxt-community/nuxtent-module/commit/a6b240a1500a8861ee8cbfdae0f3cb2b34f235c0)), closes [#69](https://github.com/nuxt-community/nuxtent-module/issues/69)
+
+### Bug Fixes
+
+* **prism** change Prism implementation to include classes ([
+4dad625](https://github.com/nuxt-community/nuxtent-module/commit/4dad625ba6ec329cd327134cca3757d6abcd0f19))
+
+* **module** harmonize date format of posts and pages ([2154c45](https://github.com/nuxt-community/nuxtent-module/commit/2154c4535fdcf0de268385c09aae64977b065ebb)), closes [#103](https://github.com/nuxt-community/nuxtent-module/issues/103), fixes[#98](https://github.com/nuxt-community/nuxtent-module/issues/98)
+
+* **module** do not expose `filePath` to the browser ([7311294](https://github.com/nuxt-community/nuxtent-module/commit/7311294734270c093bf9c7379be043bba351504d)), fixes [#96](https://github.com/nuxt-community/nuxtent-module/issues/96)
+
+* **module:** fix `generate` router permalink concatenation ([f553cda](https://github.com/nuxt-community/nuxtent-module/commit/f553cda)), closes [#103](https://github.com/nuxt-community/nuxtent-module/issues/103)
+
+
## [1.0.2](https://github.com/nuxt-community/nuxtent-module/compare/v1.0.1...v1.0.2) (2017-09-29)
diff --git a/package.json b/package.json
index 6a88e4c..935a982 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "nuxtent",
- "version": "1.0.2",
+ "version": "1.1.0",
"description": "Seamlessly use content files in your Nuxt.js sites.",
"main": "index.js",
"contributors": [