1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-02-16 19:47:23 +02:00

Rev to v0.6.2

This commit is contained in:
Chen-I Lim 2021-03-31 11:59:07 -07:00
parent 42eaa744c0
commit c47333948e
4 changed files with 4 additions and 3 deletions

View File

@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>0.6.1</string>
<string>0.6.2</string>
<key>CFBundleVersion</key>
<string>8</string>
<key>LSApplicationCategoryType</key>

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.2",
"0.6.1",
"0.6.0",
"0.5.0",

View File

@ -1,6 +1,6 @@
{
"name": "focalboard",
"version": "0.6.1",
"version": "0.6.2",
"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.1'
static readonly versionString = '0.6.2'
}
export {Constants}