Updated version numbers and changelog

This commit is contained in:
Sercan Yemen 2023-11-20 12:43:56 +03:00
parent da2cf6a5e5
commit 116e17df26
4 changed files with 27 additions and 3 deletions

2
.nvmrc
View File

@ -1 +1 @@
16
20

View File

@ -1,3 +1,3 @@
import { Version } from '@fuse/version/version';
export const FUSE_VERSION = new Version('18.0.0').full;
export const FUSE_VERSION = new Version('19.0.0').full;

View File

@ -973,7 +973,7 @@ export const defaultNavigation: FuseNavigationItem[] = [
icon : 'heroicons_outline:megaphone',
link : '/docs/changelog',
badge: {
title : '18.0.0',
title : '19.0.0',
classes: 'px-2 bg-yellow-300 text-black rounded-full',
},
},

View File

@ -13,6 +13,30 @@ export class ChangelogComponent
{
changelog: any[] = [
// v19.0.0
{
version : 'v19.0.0',
releaseDate: 'Nov 20, 2023',
changes: [
{
type: 'Changed',
list: [
'(Dependencies) Updated Angular & Angular Material to v17',
'(Dependencies) Updated various other packages',
'(Transloco) Updated to standalone configuration',
'(core) Use inject for dependencies'
],
},
{
type: 'Fixed',
list: [
'Rotation on some icons',
'Autocompleted input colors'
],
},
]
},
// v18.0.0
{
version : 'v18.0.0',