Set version to v1.0.1

This commit is contained in:
Matthew Ross 2020-06-04 09:06:19 -04:00
parent 7191282d2c
commit 16daaf8e5e
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "taskboard",
"version": "1.0.0",
"version": "1.0.1",
"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.0'; }
public get VERSION(): string { return '1.0.1'; }
public get TOKEN(): string { return 'taskboard.jwt'; }
}