diff --git a/src/@fuse/version/fuse-version.ts b/src/@fuse/version/fuse-version.ts index c29ccc8a..5f428b5c 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('13.0.2').full; +export const FUSE_VERSION = new Version('13.0.3').full; diff --git a/src/app/mock-api/common/navigation/data.ts b/src/app/mock-api/common/navigation/data.ts index aa5af904..2255d914 100644 --- a/src/app/mock-api/common/navigation/data.ts +++ b/src/app/mock-api/common/navigation/data.ts @@ -933,7 +933,7 @@ export const defaultNavigation: FuseNavigationItem[] = [ icon : 'heroicons_outline:speakerphone', link : '/docs/changelog', badge: { - title : '13.0.2', + title : '13.0.3', 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 dbbe8e47..9bcf817f 100644 --- a/src/app/modules/admin/docs/changelog/changelog.ts +++ b/src/app/modules/admin/docs/changelog/changelog.ts @@ -11,6 +11,36 @@ export class ChangelogComponent { changelog: any[] = [ + // v13.0.3 + { + version : 'v13.0.3', + releaseDate: 'June 03, 2021', + changes : [ + { + type: 'Added', + list: [ + '(apps/scrumboard) New, initial version of the Scrumboard app' + ] + }, + { + type: 'Changed', + list: [ + '(fuse/autogrow) BREAKING: Removed "fuseAutogrow" in favor of "matTextareaAutosize" since all of its problems solved, use [matTextareaAutosize] without any vertical padding on the textarea itself', + '(Angular Material) Increased default MatDialog border radius to 16px for better consistency', + '(apps/ecommerce) Small tweaks and improvements', + '(apps/mailbox) Small tweaks and improvements', + '(angular.json) Removed "e2e" entry, fixed the styles file path for "test"', + '(dependencies) Updated Angular, Angular Material & various other packages' + ] + }, + { + type: 'Fixed', + list: [ + '(Angular Material) Density setting is not being applied correctly on Dark themes' + ] + } + ] + }, // v13.0.2 { version : 'v13.0.2',