This commit is contained in:
Olivier 'reivilibre' 2021-08-17 08:43:16 +01:00
parent 91c98fbad8
commit 2155b3b113
2 changed files with 2 additions and 2 deletions

View File

@ -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": {

View File

@ -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'; }
}