Skip to content

Commit

Permalink
Release bump v2.1.0 (#490)
Browse files Browse the repository at this point in the history
* Release bump v2.1.0

* Fix typo

Co-authored-by: Mattermod <[email protected]>
Co-authored-by: Ben Schumacher <[email protected]>
  • Loading branch information
3 people authored Mar 1, 2022
1 parent 545a8f9 commit 86db5ca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"description": "GitHub plugin for Mattermost.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-github",
"support_url": "https://github.com/mattermost/mattermost-plugin-github/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-github/releases/tag/v2.0.1",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-github/releases/tag/v2.1.0",
"icon_path": "assets/icon.svg",
"version": "2.0.1",
"version": "2.1.0",
"min_server_version": "6.5.0",
"server": {
"executables": {
Expand Down
8 changes: 4 additions & 4 deletions server/plugin/flows.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ const (
stepCancel flow.Name = "cancel"

keyDelegatedFrom = "DelegatedFrom"
keyDelegatedTo = "DelgatedTo"
keyDelegatedTo = "DelegatedTo"
keyBaseURL = "BaseURL"
keyUsePreregisteredApplication = "UsePreregisteredApplication"
keyIsOAuthConfigured = "IsOAuthConfigured"
Expand Down Expand Up @@ -342,9 +342,9 @@ func (fm *FlowManager) submitDelegateSelection(f *flow.Flow, submitted map[strin

func (fm *FlowManager) stepDelegateConfirmation() flow.Step {
return flow.NewStep(stepDelegateConfirmation).
WithText("GitHub integration setup details have been sent to @{{ .DelgatedTo }}").
WithText("GitHub integration setup details have been sent to @{{ .DelegatedTo }}").
WithButton(flow.Button{
Name: "Waiting for @{{ .DelgatedTo }}...",
Name: "Waiting for @{{ .DelegatedTo }}...",
Color: flow.ColorDefault,
Disabled: true,
}).
Expand All @@ -353,7 +353,7 @@ func (fm *FlowManager) stepDelegateConfirmation() flow.Step {

func (fm *FlowManager) stepDelegateComplete() flow.Step {
return flow.NewStep(stepDelegateComplete).
WithText("@{{ .DelgatedTo }} completed configuring the integration.").
WithText("@{{ .DelegatedTo }} completed configuring the integration.").
Next(stepDone)
}

Expand Down

0 comments on commit 86db5ca

Please sign in to comment.