diff --git a/plugin.json b/plugin.json index 39a4c5d7..db9f57ae 100755 --- a/plugin.json +++ b/plugin.json @@ -2,7 +2,8 @@ "id": "mattermost-autolink", "name": "Autolink", "description": "Automatically rewrite text matching a regular expression into a Markdown link.", - "version": "1.1.0", + "version": "1.1.1", + "min_server_version": "5.16.0", "server": { "executables": { "linux-amd64": "server/dist/plugin-linux-amd64", @@ -11,7 +12,7 @@ } }, "settings_schema": { - "header": "Configure this plugin directly in the config.json file. Learn more [in our documentation](https://github.com/mattermost/mattermost-plugin-autolink/blob/master/README.md).\n\nTo report an issue, make a suggestion or a contribution, [check the plugin repository](https://github.com/mattermost/mattermost-plugin-autolink).", + "header": "Configure this plugin directly in the config.json file, or using the /autolink command. Learn more [in our documentation](https://github.com/mattermost/mattermost-plugin-autolink/blob/master/README.md).\n\nTo report an issue, make a suggestion or a contribution, [check the plugin repository](https://github.com/mattermost/mattermost-plugin-autolink).", "settings": [ { "key": "EnableAdminCommand", diff --git a/server/manifest.go b/server/manifest.go index cbd8cd29..f29eb0cb 100644 --- a/server/manifest.go +++ b/server/manifest.go @@ -5,5 +5,5 @@ var manifest = struct { Version string }{ Id: "mattermost-autolink", - Version: "1.1.0", + Version: "1.1.1", }