Increased the version number

Updated the changelog
This commit is contained in:
sercan 2021-05-21 12:02:05 +03:00
parent 6bcd04b799
commit df9f2256cd
4 changed files with 35 additions and 3 deletions

View File

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

View File

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

View File

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

View File

@ -11,6 +11,38 @@ export class ChangelogComponent
{ {
changelog: any[] = [ changelog: any[] = [
// v13.0.1
{
version : 'v13.0.1',
releaseDate: 'May 21, 2021',
changes : [
{
type: 'Added',
list: [
'(i18n) Added multi language support using @ngneat/transloco',
'(pages) Added Activities page (timeline)',
'(FuseNavigation) Added support for new "isActiveMatchOptions" for Basic navigation items; https://github.com/angular/angular/pull/40303'
]
},
{
type: 'Changed',
list: [
'(dependencies) Updated various packages to their latest versions',
'(tailwind) Use TAILWIND_MODE environment variable to activate purge on build',
'(overrides/angular-material) Changed the text and arrow color of mat-select on focus when it\'s used as a prefix or suffix in mat-form-field',
'(overrides/angular-material) Use @apply whenever it\'s possible',
'(eslint) Removed e2e tsconfig path as there is no default e2e solution included into Angular since v12.0.0',
'(eslint) Activated explicit return types on functions and methods',
'(core) Separated the "auth" and "icon registry" to their own modules to keep the CoreModule simple',
'(FuseNavigation) Added a generic return type for "getComponent" method on FuseNavigationService',
'(FuseNavigation) Use the generic return type for "getComponent"',
'(fuse) Fixed barrel exports',
'(layout/common) Added trackBy functions to ngFor loops in common components',
'(docs) Updated docs'
]
}
]
},
// v13.0.0 // v13.0.0
{ {
version : 'v13.0.0', version : 'v13.0.0',