Skip to content

Commit

Permalink
Bump version to 2.3.3 (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanzei authored Dec 20, 2022
1 parent 6fd5eaa commit 2ea6115
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
15 changes: 11 additions & 4 deletions plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,21 @@
"id": "mattermost-plugin-servicenow",
"name": "Servicenow Plugin",
"description": "This plugin serves as an integration between Mattermost and ServiceNow.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-servicenow",
"support_url": "https://github.com/mattermost/mattermost-plugin-servicenow/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-servicenow/releases/tag/v2.3.3",
"icon_path": "assets/starter-template-icon.svg",
"version": "2.3.2",
"version": "2.3.3",
"min_server_version": "5.37.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"linux-arm64": "server/dist/plugin-linux-arm64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"darwin-arm64": "server/dist/plugin-darwin-arm64",
"linux-amd64": "server/dist/plugin-linux-amd64",
"linux-arm64": "server/dist/plugin-linux-arm64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"executable": ""
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
Expand All @@ -35,6 +39,7 @@
"type": "generated",
"help_text": "The webhook secret used by the ServiceNow API calls to Mattermost for sending notifications.",
"regenerate_help_text": "Regenerates the secret for ServiceNow Plugin. Regenerating this key invalidates any existing token.",
"placeholder": "",
"default": null
},
{
Expand All @@ -58,13 +63,15 @@
"display_name": "Encryption Secret:",
"type": "generated",
"help_text": "The secret key used to encrypt and decrpyt OAuth token.",
"placeholder": "",
"default": null
},
{
"key": "ServiceNowUpdateSetDownload",
"display_name": "Download ServiceNow Update Set:",
"type": "custom",
"help_text": "The update set XML file that needs to be uploaded in ServiceNow for enabling subscriptions.",
"placeholder": "",
"default": ""
}
]
Expand Down
2 changes: 1 addition & 1 deletion server/plugin/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ var manifest = struct {
Version string
}{
ID: "mattermost-plugin-servicenow",
Version: "2.3.2",
Version: "2.3.3",
}

0 comments on commit 2ea6115

Please sign in to comment.