From f0602a6eb6435155aa761c70ad9580613a21800b Mon Sep 17 00:00:00 2001 From: Scott Bishel Date: Thu, 6 Jan 2022 12:26:35 -0700 Subject: [PATCH] Update version to 0.14.0 (#2057) * update version to 0.13.0 * update to v0.14.0 --- mac/Focalboard/Globals.swift | 2 +- mac/Focalboard/Info.plist | 2 +- mattermost-plugin/plugin.json | 2 +- mattermost-plugin/server/manifest.go | 2 +- server/model/version.go | 1 + webapp/package-lock.json | 4 ++-- webapp/package.json | 2 +- .../globalHeader/__snapshots__/globalHeader.test.tsx.snap | 2 +- .../components/sidebar/__snapshots__/sidebar.test.tsx.snap | 6 +++--- webapp/src/constants.ts | 2 +- .../dashboard/__snapshots__/dashboardPage.test.tsx.snap | 2 +- win-wpf/AppxManifest.xml | 2 +- 12 files changed, 15 insertions(+), 14 deletions(-) diff --git a/mac/Focalboard/Globals.swift b/mac/Focalboard/Globals.swift index 84da3e54d..dd52bd6e4 100644 --- a/mac/Focalboard/Globals.swift +++ b/mac/Focalboard/Globals.swift @@ -4,7 +4,7 @@ import Foundation class Globals { - static let ProductVersion = 01200 + static let ProductVersion = 01400 static let WhatsNewVersion = 01100 static var currentWhatsNewVersion: Int { diff --git a/mac/Focalboard/Info.plist b/mac/Focalboard/Info.plist index 3d1bbf248..09dc152e4 100644 --- a/mac/Focalboard/Info.plist +++ b/mac/Focalboard/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 0.12.0 + 0.14.0 CFBundleVersion $(CURRENT_PROJECT_VERSION) ITSAppUsesNonExemptEncryption diff --git a/mattermost-plugin/plugin.json b/mattermost-plugin/plugin.json index d4f8352cf..07fe1ebc6 100644 --- a/mattermost-plugin/plugin.json +++ b/mattermost-plugin/plugin.json @@ -6,7 +6,7 @@ "support_url": "https://github.com/mattermost/focalboard/issues", "release_notes_url": "https://github.com/mattermost/focalboard/releases", "icon_path": "assets/starter-template-icon.svg", - "version": "0.12.0", + "version": "0.14.0", "min_server_version": "6.0.0", "server": { "executables": { diff --git a/mattermost-plugin/server/manifest.go b/mattermost-plugin/server/manifest.go index 69cc532e2..a11874562 100644 --- a/mattermost-plugin/server/manifest.go +++ b/mattermost-plugin/server/manifest.go @@ -20,7 +20,7 @@ const manifestStr = ` "support_url": "https://github.com/mattermost/focalboard/issues", "release_notes_url": "https://github.com/mattermost/focalboard/releases", "icon_path": "assets/starter-template-icon.svg", - "version": "0.12.0", + "version": "0.14.0", "min_server_version": "6.0.0", "server": { "executables": { diff --git a/server/model/version.go b/server/model/version.go index 1d231fccf..e586950f9 100644 --- a/server/model/version.go +++ b/server/model/version.go @@ -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.14.0", "0.12.0", "0.11.0", "0.10.0", diff --git a/webapp/package-lock.json b/webapp/package-lock.json index 37e2f0c3b..de849cc74 100644 --- a/webapp/package-lock.json +++ b/webapp/package-lock.json @@ -1,12 +1,12 @@ { "name": "focalboard", - "version": "0.11.0", + "version": "0.14.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "focalboard", - "version": "0.11.0", + "version": "0.14.0", "dependencies": { "@draft-js-plugins/editor": "^4.1.0", "@draft-js-plugins/emoji": "^4.5.5", diff --git a/webapp/package.json b/webapp/package.json index 53bb4452c..818152632 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -1,6 +1,6 @@ { "name": "focalboard", - "version": "0.11.0", + "version": "0.14.0", "private": true, "description": "", "scripts": { diff --git a/webapp/src/components/globalHeader/__snapshots__/globalHeader.test.tsx.snap b/webapp/src/components/globalHeader/__snapshots__/globalHeader.test.tsx.snap index f4cb3a99f..cca6d0bdd 100644 --- a/webapp/src/components/globalHeader/__snapshots__/globalHeader.test.tsx.snap +++ b/webapp/src/components/globalHeader/__snapshots__/globalHeader.test.tsx.snap @@ -10,7 +10,7 @@ exports[`components/sidebar/GlobalHeader header menu should match snapshot 1`] = /> diff --git a/webapp/src/components/sidebar/__snapshots__/sidebar.test.tsx.snap b/webapp/src/components/sidebar/__snapshots__/sidebar.test.tsx.snap index b62b3f81d..c1171e065 100644 --- a/webapp/src/components/sidebar/__snapshots__/sidebar.test.tsx.snap +++ b/webapp/src/components/sidebar/__snapshots__/sidebar.test.tsx.snap @@ -52,7 +52,7 @@ exports[`components/sidebarSidebar global templates 1`] = `
- v0.12.0 + v0.14.0
@@ -236,7 +236,7 @@ exports[`components/sidebarSidebar sidebar hidden 1`] = `
- v0.12.0 + v0.14.0
@@ -610,7 +610,7 @@ exports[`components/sidebarSidebar sidebar in dashboard page 1`] = `
- v0.12.0 + v0.14.0
diff --git a/webapp/src/constants.ts b/webapp/src/constants.ts index 236722744..ca592fbf4 100644 --- a/webapp/src/constants.ts +++ b/webapp/src/constants.ts @@ -19,7 +19,7 @@ class Constants { static readonly defaultTitleColumnWidth = 280 static readonly titleColumnId = '__title' - static readonly versionString = '0.12.0' + static readonly versionString = '0.14.0' static readonly languages = [ { diff --git a/webapp/src/pages/dashboard/__snapshots__/dashboardPage.test.tsx.snap b/webapp/src/pages/dashboard/__snapshots__/dashboardPage.test.tsx.snap index 3bd132881..620104447 100644 --- a/webapp/src/pages/dashboard/__snapshots__/dashboardPage.test.tsx.snap +++ b/webapp/src/pages/dashboard/__snapshots__/dashboardPage.test.tsx.snap @@ -55,7 +55,7 @@ exports[`pages/dashboard/DashboardPage base case 1`] = `
- v0.12.0 + v0.14.0
diff --git a/win-wpf/AppxManifest.xml b/win-wpf/AppxManifest.xml index fc95dcc9a..a2d489fc1 100644 --- a/win-wpf/AppxManifest.xml +++ b/win-wpf/AppxManifest.xml @@ -2,7 +2,7 @@ - + Focalboard Mattermost, Inc.