diff --git a/CHANGELOG.md b/CHANGELOG.md
index c22a93fca6..3d40ab6c50 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,35 @@
+
+# [2.0.0-rc.5](https://github.com/akveo/nebular/compare/v2.0.0-rc.4...v2.0.0-rc.5) (2018-01-31)
+
+
+### Bug Fixes
+
+* **docs:** remove comma between shorthand properties in themes table ([#130](https://github.com/akveo/nebular/issues/130)) ([#133](https://github.com/akveo/nebular/issues/133)) ([b36a409](https://github.com/akveo/nebular/commit/b36a409))
+* **docs:** update marked version ([#124](https://github.com/akveo/nebular/issues/124)) ([f4c970e](https://github.com/akveo/nebular/commit/f4c970e))
+* **header:** fix layout header test ([#153](https://github.com/akveo/nebular/issues/153)) ([b97ee8f](https://github.com/akveo/nebular/commit/b97ee8f))
+* **menu:** remove hardcoded max-height ([#122](https://github.com/akveo/nebular/issues/122)) ([a753bee](https://github.com/akveo/nebular/commit/a753bee)), closes [#65](https://github.com/akveo/nebular/issues/65)
+* **menu:** stop sidebar adding display: none to collapsed item span t… ([#155](https://github.com/akveo/nebular/issues/155)) ([4c10d2a](https://github.com/akveo/nebular/commit/4c10d2a))
+* **search:** fix tests some time not passing on search ([#176](https://github.com/akveo/nebular/issues/176)) ([254ddd3](https://github.com/akveo/nebular/commit/254ddd3))
+* **sidebar:** only expand sidebar when item has children elements ([#158](https://github.com/akveo/nebular/issues/158)) ([3a47dbf](https://github.com/akveo/nebular/commit/3a47dbf)), closes [#23](https://github.com/akveo/nebular/issues/23)
+* **travis:** fix karma config for browserstack ([#156](https://github.com/akveo/nebular/issues/156)) ([d5a4873](https://github.com/akveo/nebular/commit/d5a4873))
+* **travis:** remove git depth to allow commits comparison ([#150](https://github.com/akveo/nebular/issues/150)) ([4704d9e](https://github.com/akveo/nebular/commit/4704d9e))
+* **travis:** stop randomly failing builds ([#126](https://github.com/akveo/nebular/issues/126)) ([3740e08](https://github.com/akveo/nebular/commit/3740e08))
+
+
+### Features
+
+* **auth:** warn about empty token, return falsy result ([ad8afb0](https://github.com/akveo/nebular/commit/ad8afb0))
+* **badge:** add new badge component ([#111](https://github.com/akveo/nebular/issues/111)) ([a9324b4](https://github.com/akveo/nebular/commit/a9324b4))
+* **cards:** new card types ([f15470a](https://github.com/akveo/nebular/commit/f15470a)), closes [#139](https://github.com/akveo/nebular/issues/139)
+* **search:** add input to be able to customize info label ([#147](https://github.com/akveo/nebular/issues/147)) ([12a55dc](https://github.com/akveo/nebular/commit/12a55dc)), closes [#21](https://github.com/akveo/nebular/issues/21)
+
+
+### BREAKING CHANGES
+
+* **auth:** now if login/register returns no value for token, unsuccessful NbAuthResult is returned
+
+
+
# [2.0.0-rc.4](https://github.com/akveo/nebular/compare/2.0.0-rc.3...2.0.0-rc.4) (2017-12-31) :christmas_tree:
diff --git a/package-lock.json b/package-lock.json
index 228176003e..5c4bac8875 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "nebular",
- "version": "2.0.0-rc.4",
+ "version": "2.0.0-rc.5",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index d76ff4ede6..7bb4c1b911 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "nebular",
- "version": "2.0.0-rc.4",
+ "version": "2.0.0-rc.5",
"license": "MIT",
"author": "akveo ",
"bugs": {
diff --git a/src/framework/auth/package.json b/src/framework/auth/package.json
index 940191a82e..e3b8eeafdc 100644
--- a/src/framework/auth/package.json
+++ b/src/framework/auth/package.json
@@ -1,6 +1,6 @@
{
"name": "@nebular/auth",
- "version": "2.0.0-rc.4",
+ "version": "2.0.0-rc.5",
"description": "@nebular/auth",
"main": "./bundles/auth.umd.js",
"module": "./index.js",
@@ -32,7 +32,7 @@
"@angular/router": "^5.1.0",
"@angular/forms": "^5.1.0",
"@angular/http": "^5.1.0",
- "@nebular/theme": "2.0.0-rc.4",
+ "@nebular/theme": "2.0.0-rc.5",
"rxjs": "~5.5.5"
}
}
diff --git a/src/framework/theme/package.json b/src/framework/theme/package.json
index e5f18b5be4..c7972444a2 100644
--- a/src/framework/theme/package.json
+++ b/src/framework/theme/package.json
@@ -1,6 +1,6 @@
{
"name": "@nebular/theme",
- "version": "2.0.0-rc.4",
+ "version": "2.0.0-rc.5",
"description": "@nebular/theme",
"main": "./bundles/theme.umd.js",
"module": "./index.js",