Updated version numbers

This commit is contained in:
Sercan Yemen 2024-03-11 11:27:43 +03:00
parent 63d1fef588
commit cc9cf23353
3 changed files with 24 additions and 2 deletions

View File

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

View File

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

View File

@ -13,6 +13,28 @@ export class ChangelogComponent
{ {
changelog: any[] = [ changelog: any[] = [
// v19.1.0
{
version : 'v19.1.0',
releaseDate: 'Mar 11, 2024',
changes: [
{
type: 'Changed',
list: [
'(Dependencies) Updated Angular & Angular Material',
'(Dependencies) Updated various other dependencies',
'(@fuse/fullscreen) Updated the fullscreen component to use the new Fullscreen API',
],
},
{
type: 'Fixed',
list: [
'Legacy peer dependeny resolution',
],
},
]
},
// v19.0.0 // v19.0.0
{ {
version : 'v19.0.0', version : 'v19.0.0',