diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1fb3c094cf..7727abd9a3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,32 @@
+
+# [3.2.0](https://github.com/akveo/nebular/compare/v3.1.0...v3.2.0) (2019-01-31)
+
+Popover and Tooltip components can accept dynamic :rocket: content through bindings or code.
+
+### Bug Fixes
+
+* **docs:** prevent scrolling when user scroll ([#982](https://github.com/akveo/nebular/issues/982)) ([bc2ab1d](https://github.com/akveo/nebular/commit/bc2ab1d)), closes [#810](https://github.com/akveo/nebular/issues/810)
+* **layout:** set document dir directly ([#1164](https://github.com/akveo/nebular/issues/1164)) ([37eaea7](https://github.com/akveo/nebular/commit/37eaea7))
+* **popover:** fix template context not being passed, update cdk to 7.2.1 ([#1153](https://github.com/akveo/nebular/issues/1153)) ([c83188c](https://github.com/akveo/nebular/commit/c83188c)), closes [#1084](https://github.com/akveo/nebular/issues/1084) [#848](https://github.com/akveo/nebular/issues/848)
+* **router-tabset:** navigate using router link ([#1146](https://github.com/akveo/nebular/issues/1146)) ([cb1c21e](https://github.com/akveo/nebular/commit/cb1c21e)), closes [#188](https://github.com/akveo/nebular/issues/188)
+* **search:** emit activate and deactivate events ([#1162](https://github.com/akveo/nebular/issues/1162)) ([67c5718](https://github.com/akveo/nebular/commit/67c5718))
+* **tooltip:** fix tooltip not being hide + tests ([#1123](https://github.com/akveo/nebular/issues/1123)) ([9360a4b](https://github.com/akveo/nebular/commit/9360a4b))
+
+
+### Features
+
+* **action:** provide new attributes for link and title ([#1046](https://github.com/akveo/nebular/issues/1046)) ([30bd394](https://github.com/akveo/nebular/commit/30bd394)), closes [#814](https://github.com/akveo/nebular/issues/814)
+* **context-menu:** add `nbContextMenuTrigger` parameter ([#1139](https://github.com/akveo/nebular/issues/1139)) ([27b291e](https://github.com/akveo/nebular/commit/27b291e)), closes [#1112](https://github.com/akveo/nebular/issues/1112)
+* **overlay:** add noop trigger strategy ([#1133](https://github.com/akveo/nebular/issues/1133)) ([1e43929](https://github.com/akveo/nebular/commit/1e43929))
+* **popover:** add ability for dynamic input ([#1149](https://github.com/akveo/nebular/issues/1149)) ([d427e59](https://github.com/akveo/nebular/commit/d427e59)), closes [#953](https://github.com/akveo/nebular/issues/953) [#1142](https://github.com/akveo/nebular/issues/1142)
+* **stepper:** add disable step navigation setting ([#1155](https://github.com/akveo/nebular/issues/1155)) ([e1503cc](https://github.com/akveo/nebular/commit/e1503cc)), closes [#902](https://github.com/akveo/nebular/issues/902)
+* **stepper:** add linear mode ([#1151](https://github.com/akveo/nebular/issues/1151)) ([db5d214](https://github.com/akveo/nebular/commit/db5d214)), closes [#1040](https://github.com/akveo/nebular/issues/1040)
+* **tabs:** add `disabled` property ([#1141](https://github.com/akveo/nebular/issues/1141)) ([ea7b209](https://github.com/akveo/nebular/commit/ea7b209)), closes [#387](https://github.com/akveo/nebular/issues/387)
+* **tooltip:** add new `nbTooltipTrigger` parameter ([#1138](https://github.com/akveo/nebular/issues/1138)) ([113d3b0](https://github.com/akveo/nebular/commit/113d3b0))
+* **tooltip:** dynamic inputs support ([#1184](https://github.com/akveo/nebular/issues/1184)) ([9ce7019](https://github.com/akveo/nebular/commit/9ce7019)), closes [#1052](https://github.com/akveo/nebular/issues/1052) [#1159](https://github.com/akveo/nebular/issues/1159)
+
+
+
# [3.1.0](https://github.com/akveo/nebular/compare/v3.0.1...v3.1.0) (2018-12-31) :christmas_tree:
diff --git a/package-lock.json b/package-lock.json
index d8dba57969..e40fd32063 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "nebular",
- "version": "3.1.0",
+ "version": "3.2.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index cfb465f758..39344312ec 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "nebular",
- "version": "3.1.0",
+ "version": "3.2.0",
"license": "MIT",
"author": "akveo ",
"browserslist": [
@@ -174,4 +174,4 @@
"uglifyjs-webpack-plugin": "1.1.5"
},
"schematics": "./schematics/dist/collection.json"
-}
+}
\ No newline at end of file
diff --git a/src/framework/auth/package.json b/src/framework/auth/package.json
index f449e4598a..9366748a87 100644
--- a/src/framework/auth/package.json
+++ b/src/framework/auth/package.json
@@ -1,6 +1,6 @@
{
"name": "@nebular/auth",
- "version": "3.1.0",
+ "version": "3.2.0",
"description": "@nebular/auth",
"main": "./bundles/auth.umd.js",
"module": "./index.js",
@@ -32,7 +32,7 @@
"@angular/router": "^7.0.0",
"@angular/forms": "^7.0.0",
"@angular/http": "^7.0.0",
- "@nebular/theme": "3.1.0",
+ "@nebular/theme": "3.2.0",
"rxjs": "^6.3.0"
}
}
\ No newline at end of file
diff --git a/src/framework/bootstrap/package.json b/src/framework/bootstrap/package.json
index 5a36a56853..496909ac9a 100644
--- a/src/framework/bootstrap/package.json
+++ b/src/framework/bootstrap/package.json
@@ -1,6 +1,6 @@
{
"name": "@nebular/bootstrap",
- "version": "3.1.0",
+ "version": "3.2.0",
"description": "@nebular/bootstrap",
"author": "akveo",
"license": "MIT",
@@ -22,6 +22,6 @@
],
"peerDependencies": {
"bootstrap": "^4.0.0",
- "@nebular/theme": "3.1.0"
+ "@nebular/theme": "3.2.0"
}
}
\ No newline at end of file
diff --git a/src/framework/date-fns/package.json b/src/framework/date-fns/package.json
index 8c5261ba2a..af3e9b0d84 100644
--- a/src/framework/date-fns/package.json
+++ b/src/framework/date-fns/package.json
@@ -1,6 +1,6 @@
{
"name": "@nebular/date-fns",
- "version": "3.1.0",
+ "version": "3.2.0",
"description": "@nebular/date-fns",
"main": "./bundles/theme.umd.js",
"module": "./index.js",
@@ -24,7 +24,7 @@
"nebular"
],
"peerDependencies": {
- "@nebular/theme": "3.1.0",
+ "@nebular/theme": "3.2.0",
"date-fns": "^2.0.0-alpha.16"
}
}
\ No newline at end of file
diff --git a/src/framework/moment/package.json b/src/framework/moment/package.json
index abb594c003..e13bb90e05 100644
--- a/src/framework/moment/package.json
+++ b/src/framework/moment/package.json
@@ -1,6 +1,6 @@
{
"name": "@nebular/moment",
- "version": "3.1.0",
+ "version": "3.2.0",
"description": "@nebular/moment",
"main": "./bundles/theme.umd.js",
"module": "./index.js",
@@ -24,7 +24,7 @@
"nebular"
],
"peerDependencies": {
- "@nebular/theme": "3.1.0",
+ "@nebular/theme": "3.2.0",
"moment": "^2.22.2"
}
}
\ No newline at end of file
diff --git a/src/framework/security/package.json b/src/framework/security/package.json
index bcaf0bc53d..8601fd702c 100644
--- a/src/framework/security/package.json
+++ b/src/framework/security/package.json
@@ -1,6 +1,6 @@
{
"name": "@nebular/security",
- "version": "3.1.0",
+ "version": "3.2.0",
"description": "@nebular/security",
"main": "./bundles/security.umd.js",
"module": "./index.js",
diff --git a/src/framework/theme/package.json b/src/framework/theme/package.json
index b543a4f1e2..b79b0888fd 100644
--- a/src/framework/theme/package.json
+++ b/src/framework/theme/package.json
@@ -1,6 +1,6 @@
{
"name": "@nebular/theme",
- "version": "3.1.0",
+ "version": "3.2.0",
"description": "@nebular/theme",
"main": "./bundles/theme.umd.js",
"module": "./index.js",
@@ -36,4 +36,4 @@
"intersection-observer": "0.5.0"
},
"schematics": "./schematics/collection.json"
-}
+}
\ No newline at end of file