update version to v7.1.1 (#4733)
This commit is contained in:
parent
8de46aff11
commit
265529c3a6
8 changed files with 12 additions and 11 deletions
|
@ -6,7 +6,7 @@
|
||||||
"support_url": "https://github.com/mattermost/focalboard/issues",
|
"support_url": "https://github.com/mattermost/focalboard/issues",
|
||||||
"release_notes_url": "https://github.com/mattermost/focalboard/releases",
|
"release_notes_url": "https://github.com/mattermost/focalboard/releases",
|
||||||
"icon_path": "assets/starter-template-icon.svg",
|
"icon_path": "assets/starter-template-icon.svg",
|
||||||
"version": "7.1.0",
|
"version": "7.1.1",
|
||||||
"min_server_version": "7.0.0",
|
"min_server_version": "7.0.0",
|
||||||
"server": {
|
"server": {
|
||||||
"executables": {
|
"executables": {
|
||||||
|
|
2
mattermost-plugin/server/manifest.go
generated
2
mattermost-plugin/server/manifest.go
generated
|
@ -20,7 +20,7 @@ const manifestStr = `
|
||||||
"support_url": "https://github.com/mattermost/focalboard/issues",
|
"support_url": "https://github.com/mattermost/focalboard/issues",
|
||||||
"release_notes_url": "https://github.com/mattermost/focalboard/releases",
|
"release_notes_url": "https://github.com/mattermost/focalboard/releases",
|
||||||
"icon_path": "assets/starter-template-icon.svg",
|
"icon_path": "assets/starter-template-icon.svg",
|
||||||
"version": "7.1.0",
|
"version": "7.1.1",
|
||||||
"min_server_version": "7.0.0",
|
"min_server_version": "7.0.0",
|
||||||
"server": {
|
"server": {
|
||||||
"executables": {
|
"executables": {
|
||||||
|
|
|
@ -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{
|
||||||
|
"7.1.1",
|
||||||
"7.1.0",
|
"7.1.0",
|
||||||
"7.0.1",
|
"7.0.1",
|
||||||
"7.0.0",
|
"7.0.0",
|
||||||
|
|
4
webapp/package-lock.json
generated
4
webapp/package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "focalboard",
|
"name": "focalboard",
|
||||||
"version": "7.1.0",
|
"version": "7.1.1",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "focalboard",
|
"name": "focalboard",
|
||||||
"version": "7.1.0",
|
"version": "7.1.1",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@draft-js-plugins/editor": "^4.1.0",
|
"@draft-js-plugins/editor": "^4.1.0",
|
||||||
"@draft-js-plugins/emoji": "^4.5.5",
|
"@draft-js-plugins/emoji": "^4.5.5",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "focalboard",
|
"name": "focalboard",
|
||||||
"version": "7.1.0",
|
"version": "7.1.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "",
|
"description": "",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -10,7 +10,7 @@ exports[`components/sidebar/GlobalHeader header menu should match snapshot 1`] =
|
||||||
/>
|
/>
|
||||||
<a
|
<a
|
||||||
class="GlobalHeaderComponent__button help-button"
|
class="GlobalHeaderComponent__button help-button"
|
||||||
href="https://www.focalboard.com/fwlink/doc-boards.html?v=7.1.0"
|
href="https://www.focalboard.com/fwlink/doc-boards.html?v=7.1.1"
|
||||||
rel="noreferrer"
|
rel="noreferrer"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
>
|
>
|
||||||
|
|
|
@ -109,9 +109,9 @@ exports[`components/sidebarSidebar sidebar hidden 1`] = `
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="version"
|
class="version"
|
||||||
title="v7.1.0"
|
title="v7.1.1"
|
||||||
>
|
>
|
||||||
v7.1.0
|
v7.1.1
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -484,9 +484,9 @@ exports[`components/sidebarSidebar sidebar in dashboard page 1`] = `
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="version"
|
class="version"
|
||||||
title="v7.1.0"
|
title="v7.1.1"
|
||||||
>
|
>
|
||||||
v7.1.0
|
v7.1.1
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -22,7 +22,7 @@ class Constants {
|
||||||
static readonly titleColumnId = '__title'
|
static readonly titleColumnId = '__title'
|
||||||
static readonly badgesColumnId = '__badges'
|
static readonly badgesColumnId = '__badges'
|
||||||
|
|
||||||
static readonly versionString = '7.1.0'
|
static readonly versionString = '7.1.1'
|
||||||
|
|
||||||
static readonly archiveHelpPage = 'https://docs.mattermost.com/boards/data-and-archives.html'
|
static readonly archiveHelpPage = 'https://docs.mattermost.com/boards/data-and-archives.html'
|
||||||
static readonly imports = [
|
static readonly imports = [
|
||||||
|
|
Loading…
Reference in a new issue