From 2261b4b1b77300b0b7507035243efc4ebf7d638b Mon Sep 17 00:00:00 2001 From: Olivier 'reivilibre Date: Tue, 17 Aug 2021 08:43:16 +0100 Subject: [PATCH] 1.0.4 --- package.json | 2 +- src/app/shared/constants.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e951611..2b3d3e5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "taskboard", - "version": "1.0.3", + "version": "1.0.4", "description": "A Kanban-inspired app for keeping track of things that need to get done.", "private": true, "repository": { diff --git a/src/app/shared/constants.ts b/src/app/shared/constants.ts index 7f11deb..afce6c4 100644 --- a/src/app/shared/constants.ts +++ b/src/app/shared/constants.ts @@ -2,7 +2,7 @@ import { Injectable } from '@angular/core'; @Injectable() export class Constants { - public get VERSION(): string { return '1.0.2'; } + public get VERSION(): string { return '1.0.4'; } public get TOKEN(): string { return 'taskboard.jwt'; } }