From df9f2256cda59ac45c26df83c6ebd23060584ccd Mon Sep 17 00:00:00 2001 From: sercan Date: Fri, 21 May 2021 12:02:05 +0300 Subject: [PATCH] Increased the version number Updated the changelog --- package.json | 2 +- src/@fuse/version/fuse-version.ts | 2 +- src/app/mock-api/common/navigation/data.ts | 2 +- .../modules/admin/docs/changelog/changelog.ts | 32 +++++++++++++++++++ 4 files changed, 35 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 69ab9184..79978d78 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fuse/demo", - "version": "13.0.0", + "version": "13.0.1", "license": "https://themeforest.net/licenses/standard", "private": true, "scripts": { diff --git a/src/@fuse/version/fuse-version.ts b/src/@fuse/version/fuse-version.ts index 284b2a2b..15f63ba1 100644 --- a/src/@fuse/version/fuse-version.ts +++ b/src/@fuse/version/fuse-version.ts @@ -1,3 +1,3 @@ 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; diff --git a/src/app/mock-api/common/navigation/data.ts b/src/app/mock-api/common/navigation/data.ts index 05e50df0..f00666c8 100644 --- a/src/app/mock-api/common/navigation/data.ts +++ b/src/app/mock-api/common/navigation/data.ts @@ -927,7 +927,7 @@ export const defaultNavigation: FuseNavigationItem[] = [ icon : 'heroicons_outline:speakerphone', link : '/docs/changelog', badge: { - title : '13.0.0', + title : '13.0.1', classes: 'px-2 bg-yellow-300 text-black rounded-full' } }, diff --git a/src/app/modules/admin/docs/changelog/changelog.ts b/src/app/modules/admin/docs/changelog/changelog.ts index 3df4dbce..36050e24 100644 --- a/src/app/modules/admin/docs/changelog/changelog.ts +++ b/src/app/modules/admin/docs/changelog/changelog.ts @@ -11,6 +11,38 @@ export class ChangelogComponent { 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 { version : 'v13.0.0',