Skip to content

Commit ba7743d

Browse files
authored
Bumped version to 1.1.1, requires 5.16+ (#77)
* Bumped version to 1.1.1, requires 5.15+ * PR feedback
1 parent a017380 commit ba7743d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

plugin.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"id": "mattermost-autolink",
33
"name": "Autolink",
44
"description": "Automatically rewrite text matching a regular expression into a Markdown link.",
5-
"version": "1.1.0",
5+
"version": "1.1.1",
6+
"min_server_version": "5.16.0",
67
"server": {
78
"executables": {
89
"linux-amd64": "server/dist/plugin-linux-amd64",
@@ -11,7 +12,7 @@
1112
}
1213
},
1314
"settings_schema": {
14-
"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).",
15+
"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).",
1516
"settings": [
1617
{
1718
"key": "EnableAdminCommand",

server/manifest.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ var manifest = struct {
55
Version string
66
}{
77
Id: "mattermost-autolink",
8-
Version: "1.1.0",
8+
Version: "1.1.1",
99
}

0 commit comments

Comments
 (0)