Updated version number and the changelog

This commit is contained in:
Sercan Yemen 2022-01-01 22:50:22 +03:00
parent 57a3f6ae99
commit 6e593b1f1e
3 changed files with 23 additions and 2 deletions

View File

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

View File

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

View File

@ -10,6 +10,27 @@ export class ChangelogComponent
{
changelog: any[] = [
// v14.1.1
{
version : 'v14.1.1',
releaseDate: 'Jan 02, 2022',
changes : [
{
type: 'Changed',
list: [
'(dependencies) Updated various packages',
'(TailwindCSS) Moved to the new syntax on Tailwind config'
]
},
{
type: 'Changed',
list: [
'(TailwindCSS) Accent and Warn colors are not being generated for themes other than the Default',
'(Contacts) Fixed: Typo on resolve object'
]
}
]
},
// v14.1.0
{
version : 'v14.1.0',