Update to v0.6.0

This commit is contained in:
Chen-I Lim 2021-03-08 09:36:14 -08:00
parent 78473ab412
commit eaf8321f52
6 changed files with 6 additions and 5 deletions

View file

@ -5,7 +5,7 @@
// Schemes: http, https
// Host: localhost
// BasePath: /api/v1
// Version: 0.5.0
// Version: 1.0.0
// License: Custom https://github.com/mattermost/focalboard/blob/main/LICENSE.txt
// Contact: Focalboard<api@focalboard.com> https://www.focalboard.com
//

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.0",
"0.5.0",
}

View file

@ -1234,7 +1234,7 @@ ul.nav-tabs {
<div id="header">
<div id="api-_">
<h2 id="welcome-to-apidoc">API and SDK Documentation</h2>
<div class="app-desc">Version: 0.5.0</div>
<div class="app-desc">Version: 1.0.0</div>
<hr>
<div id="app-description" class="app-desc">
Server for Focalboard

View file

@ -284,7 +284,7 @@ info:
name: Custom
url: https://github.com/mattermost/focalboard/blob/main/LICENSE.txt
title: Focalboard Server
version: 0.5.0
version: 1.0.0
paths:
/api/v1/blocks:
get:

View file

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

View file

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