From 1b78ce78ddab70ec83ec9f92554cc4a714691ab8 Mon Sep 17 00:00:00 2001 From: Ben Schumacher Date: Wed, 13 Jan 2021 14:59:50 +0100 Subject: [PATCH] Release v1.4.0 (#43) --- plugin.json | 11 +++++++---- server/manifest.go | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/plugin.json b/plugin.json index 2974592..6225010 100644 --- a/plugin.json +++ b/plugin.json @@ -4,17 +4,20 @@ "description": "Gives you the ability to quickly create and post memes via a /meme slash command.", "homepage_url": "https://github.com/mattermost/mattermost-plugin-memes", "support_url": "https://github.com/mattermost/mattermost-plugin-memes/issues", - "release_notes_url": "https://github.com/mattermost/mattermost-plugin-memes/releases/tag/v1.3.0", - "version": "1.3.0", + "release_notes_url": "https://github.com/mattermost/mattermost-plugin-memes/releases/tag/v1.4.0", + "version": "1.4.0", "min_server_version": "5.2.0", "server": { "executables": { "linux-amd64": "server/dist/plugin-linux-amd64", "darwin-amd64": "server/dist/plugin-darwin-amd64", "windows-amd64": "server/dist/plugin-windows-amd64.exe" - } + }, + "executable": "" }, "settings_schema": { - "footer": "* To report an issue, make a suggestion or a contribution, [check the repository](https://github.com/mattermost/mattermost-plugin-memes)." + "header": "", + "footer": "* To report an issue, make a suggestion or a contribution, [check the repository](https://github.com/mattermost/mattermost-plugin-memes).", + "settings": null } } diff --git a/server/manifest.go b/server/manifest.go index 203af34..5b13fdd 100644 --- a/server/manifest.go +++ b/server/manifest.go @@ -7,5 +7,5 @@ var manifest = struct { Version string }{ ID: "memes", - Version: "1.3.0", + Version: "1.4.0", }