From 20cab506da9edd7debdd1a473e90d38ad4f0b393 Mon Sep 17 00:00:00 2001 From: Ben Schumacher Date: Fri, 9 Oct 2020 09:50:14 +0200 Subject: [PATCH] Release v1.0.0 (#17) --- plugin.json | 8 ++++++-- server/manifest.go | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/plugin.json b/plugin.json index 75a7e49..1a68983 100644 --- a/plugin.json +++ b/plugin.json @@ -1,8 +1,12 @@ { "id": "mattermost-profanity-filter", "name": "Profanity Filter", - "description": "For filtering out naughty words.", - "version": "0.1.1", + "description": "Censor out profanity from user messages in real-time based on a list of words.", + "homepage_url": "https://github.com/mattermost/mattermost-plugin-profanity-filter", + "support_url": "https://github.com/mattermost/mattermost-plugin-profanity-filter/issues", + "release_notes_url": "https://github.com/mattermost/mattermost-plugin-profanity-filter/releases/tag/v1.0.0", + "version": "1.0.0", + "min_server_version": "5.2.0", "server": { "executables": { "linux-amd64": "server/dist/plugin-linux-amd64", diff --git a/server/manifest.go b/server/manifest.go index d44e46f..4e92ac0 100644 --- a/server/manifest.go +++ b/server/manifest.go @@ -7,5 +7,5 @@ var manifest = struct { Version string }{ ID: "mattermost-profanity-filter", - Version: "0.1.1", + Version: "1.0.0", }