Fix #136: Update the displayed version

This commit is contained in:
Chen-I Lim 2021-03-19 09:59:46 -07:00
parent f5047956e9
commit a34c9a7128
3 changed files with 3 additions and 2 deletions

View file

@ -4,6 +4,7 @@ package model
// It should be maintained in chronological order with most current
// release at the front of the list.
var versions = []string{
"0.6.1",
"0.6.0",
"0.5.0",
}

View file

@ -1,6 +1,6 @@
{
"name": "focalboard",
"version": "0.6.0",
"version": "0.6.1",
"private": true,
"description": "",
"scripts": {

View file

@ -19,7 +19,7 @@ class Constants {
static readonly defaultTitleColumnWidth = 280
static readonly titleColumnId = '__title'
static readonly versionString = '0.6.0'
static readonly versionString = '0.6.1'
}
export {Constants}