Skip to content

Commit

Permalink
Bumped version to 1.1.1, requires 5.16+ (#77)
Browse files Browse the repository at this point in the history
* Bumped version to 1.1.1, requires 5.15+

* PR feedback
  • Loading branch information
levb authored Oct 1, 2019
1 parent a017380 commit ba7743d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion server/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ var manifest = struct {
Version string
}{
Id: "mattermost-autolink",
Version: "1.1.0",
Version: "1.1.1",
}

0 comments on commit ba7743d

Please sign in to comment.