diff --git a/mattermost-plugin/plugin.json b/mattermost-plugin/plugin.json index 2b86d0fc7..9eac3c066 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": "7.12.0", + "version": "8.0.0", "min_server_version": "7.2.0", "server": { "executables": { @@ -30,5 +30,6 @@ "default": false, "help_text": "This allows board editors to share boards that can be accessed by anyone with the link." }] - } + }, + "disable_in_marketplace": true } diff --git a/mattermost-plugin/server/manifest.go b/mattermost-plugin/server/manifest.go index 41f995486..f89cf8e34 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": "7.12.0", + "version": "8.0.0", "min_server_version": "7.2.0", "server": { "executables": { @@ -49,7 +49,8 @@ const manifestStr = ` "hosting": "" } ] - } + }, + "disable_in_marketplace": true } `