Increased the version number

(changelog) Updated changelog
This commit is contained in:
sercan 2021-05-14 17:44:18 +03:00
parent cad136c0e5
commit ee1caef303
4 changed files with 32 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@fuse/demo",
"version": "12.3.0",
"version": "13.0.0",
"license": "https://themeforest.net/licenses/standard",
"private": true,
"scripts": {

View File

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

View File

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

View File

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