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 // Schemes: http, https
// Host: localhost // Host: localhost
// BasePath: /api/v1 // BasePath: /api/v1
// Version: 0.5.0 // Version: 1.0.0
// License: Custom https://github.com/mattermost/focalboard/blob/main/LICENSE.txt // License: Custom https://github.com/mattermost/focalboard/blob/main/LICENSE.txt
// Contact: Focalboard<api@focalboard.com> https://www.focalboard.com // 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 // It should be maintained in chronological order with most current
// release at the front of the list. // release at the front of the list.
var versions = []string{ var versions = []string{
"0.6.0",
"0.5.0", "0.5.0",
} }

View file

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

View file

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

View file

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

View file

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