From a37d519f18c83bc43c1d9cd6000129e1b708715c Mon Sep 17 00:00:00 2001 From: Eduardo Silva Date: Tue, 10 May 2022 13:30:28 -0300 Subject: [PATCH 1/3] chore(release): 8.1.0 --- CHANGELOG.md | 15 ++++++++++++--- package-lock.json | 2 +- package.json | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 326364c9ef..895909868f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# Changelog + +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. + +## [8.1.0](https://github.com/akveo/ngx-admin/compare/v8.0.0...v8.1.0) (2022-05-10) + + +### Features + +* update README.md ([f5015ac](https://github.com/akveo/ngx-admin/commit/f5015ac0d77efe579191f2d440417581eb93c58e)) +* update templates section in README ([570031d](https://github.com/akveo/ngx-admin/commit/570031d2befc5d1de5133401bfc48fe237c88458)) + # [8.0.0](https://github.com/akveo/ngx-admin/compare/v7.0.0...v8.0.0) (2021-10-08) @@ -281,6 +293,3 @@ Nebular changelog is available [here](https://github.com/akveo/nebular/blob/mast * **bootstrap:** update bootstrap to beta.2, nebular to rc.3 ([b525213](https://github.com/akveo/ngx-admin/commit/b525213)) * **compodoc:** add compodoc documentation generator ([#1327](https://github.com/akveo/ngx-admin/issues/1327)) ([eebbc12](https://github.com/akveo/ngx-admin/commit/eebbc12)) * **loader:** add loading progress indicator ([#1319](https://github.com/akveo/ngx-admin/issues/1319)) ([f479715](https://github.com/akveo/ngx-admin/commit/f479715)) - - - diff --git a/package-lock.json b/package-lock.json index 071aad2213..2f87a70164 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ngx-admin", - "version": "8.0.0", + "version": "8.1.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 9d0f415788..6d888a3374 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ngx-admin", - "version": "8.0.0", + "version": "8.1.0", "license": "MIT", "repository": { "type": "git", From 84791ad70f60811e031338e345e7bbdd567dd516 Mon Sep 17 00:00:00 2001 From: Eduardo Silva Date: Tue, 10 May 2022 13:30:45 -0300 Subject: [PATCH 2/3] chore(release): 8.1.1 --- CHANGELOG.md | 2 ++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 895909868f..a0ee368753 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ 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. +### [8.1.1](https://github.com/akveo/ngx-admin/compare/v8.1.0...v8.1.1) (2022-05-10) + ## [8.1.0](https://github.com/akveo/ngx-admin/compare/v8.0.0...v8.1.0) (2022-05-10) diff --git a/package-lock.json b/package-lock.json index 2f87a70164..7747f6b1a1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ngx-admin", - "version": "8.1.0", + "version": "8.1.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 6d888a3374..f3c855f9db 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ngx-admin", - "version": "8.1.0", + "version": "8.1.1", "license": "MIT", "repository": { "type": "git", From e40fda67cd3bf37a1147628ada34cc903b759a97 Mon Sep 17 00:00:00 2001 From: Eduardo Silva Date: Wed, 11 May 2022 09:16:11 -0300 Subject: [PATCH 3/3] fix(nav): fix layout pages navigation --- src/app/pages/pages.module.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/pages/pages.module.ts b/src/app/pages/pages.module.ts index c1de7ffdb2..b310c8c32e 100644 --- a/src/app/pages/pages.module.ts +++ b/src/app/pages/pages.module.ts @@ -7,6 +7,7 @@ import { DashboardModule } from './dashboard/dashboard.module'; import { ECommerceModule } from './e-commerce/e-commerce.module'; import { PagesRoutingModule } from './pages-routing.module'; import { MiscellaneousModule } from './miscellaneous/miscellaneous.module'; +import { LayoutModule } from './layout/layout.module'; @NgModule({ imports: [ @@ -16,6 +17,7 @@ import { MiscellaneousModule } from './miscellaneous/miscellaneous.module'; DashboardModule, ECommerceModule, MiscellaneousModule, + LayoutModule, ], declarations: [ PagesComponent,