diff --git a/package.json b/package.json index 4a3c806f..7f696819 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fuse/demo", - "version": "12.3.0", + "version": "13.0.0", "license": "https://themeforest.net/licenses/standard", "private": true, "scripts": { diff --git a/src/@fuse/version/fuse-version.ts b/src/@fuse/version/fuse-version.ts index df461ff5..284b2a2b 100644 --- a/src/@fuse/version/fuse-version.ts +++ b/src/@fuse/version/fuse-version.ts @@ -1,3 +1,3 @@ import { Version } from '@fuse/version/version'; -export const FUSE_VERSION = new Version('12.3.0').full; +export const FUSE_VERSION = new Version('13.0.0').full; diff --git a/src/app/mock-api/common/navigation/data.ts b/src/app/mock-api/common/navigation/data.ts index 552eeaec..3823a2d3 100644 --- a/src/app/mock-api/common/navigation/data.ts +++ b/src/app/mock-api/common/navigation/data.ts @@ -920,7 +920,7 @@ export const defaultNavigation: FuseNavigationItem[] = [ icon : 'heroicons_outline:speakerphone', link : '/docs/changelog', badge: { - title : '12.3.0', + title : '13.0.0', classes: 'px-2 bg-yellow-300 text-black rounded-full' } }, diff --git a/src/app/modules/admin/docs/changelog/changelog.ts b/src/app/modules/admin/docs/changelog/changelog.ts index 2ed317ab..3df4dbce 100644 --- a/src/app/modules/admin/docs/changelog/changelog.ts +++ b/src/app/modules/admin/docs/changelog/changelog.ts @@ -1,3 +1,4 @@ +/* eslint-disable max-len */ import { ChangeDetectionStrategy, Component } from '@angular/core'; @Component({ @@ -10,6 +11,34 @@ export class ChangelogComponent { changelog: any[] = [ + // v13.0.0 + { + version : 'v13.0.0', + releaseDate: 'May 15, 2021', + changes : [ + { + type: 'Added', + list: [ + '(pages/settings) New Settings page', + '(support) "_redirects" file for Netlify support' + ] + }, + { + type: 'Changed', + list: [ + '(dependencies) Updated Angular & Angular Material to v12.0.0', + '(dependencies) Updated various other packages', + '(linting) Migrated over to the ESLint', + '(routing) Use "corrected" behavior for relative link resolution (https://github.com/angular/angular/pull/22394) as it\'s the default value starting from Angular v11 (https://github.com/angular/angular/pull/25609)', + '(refactoring) Moved *ngFor directives to their separate element', + '(apps/ecommerce) Tweaked the hover color on inventory list for better consistency', + '(apps/chat) Tweaked the hover color on lists for better consistency', + '(apps/contacts) Tweaked the hover color on contact list for better consistency', + '(apps/tasks) Visual improvements' + ] + } + ] + }, // v12.3.0 { version : 'v12.3.0',