(general) Updated version numbers and changelog

This commit is contained in:
sercan 2021-06-03 13:25:07 +03:00
parent decb238f73
commit 2c5cd60c0a
3 changed files with 32 additions and 2 deletions

View File

@ -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;

View File

@ -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'
}
},

View File

@ -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',