Skip to content

Commit

Permalink
Release v1.2.0 (#415)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanzei authored Jan 6, 2023
1 parent 3781a13 commit 44db542
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion cmd/appsctl/aws.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ func helloServerless() apps.App {
DeployType: apps.DeployAWSLambda,
Manifest: apps.Manifest{
AppID: "hello-serverless",
Version: "v1.1.0",
Version: "v1.2.0",
Deploy: apps.Deploy{
AWSLambda: &apps.AWSLambda{
Functions: []apps.AWSLambdaFunction{
Expand Down
2 changes: 1 addition & 1 deletion goapp/expand/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func main() {
app := goapp.MakeAppOrPanic(
apps.Manifest{
AppID: "example-expand",
Version: "v1.1.0",
Version: "v1.2.0",
DisplayName: "A Mattermost app illustrating how `Call.Expand` works",
Icon: "icon.png",
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/examples/go/expand",
Expand Down
2 changes: 1 addition & 1 deletion goapp/hello-world/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func main() {
goapp.MakeAppOrPanic(
apps.Manifest{
AppID: "hello-goapp",
Version: "v1.1.0",
Version: "v1.2.0",
DisplayName: "Hello, world! as a goapp",
Icon: "icon.png",
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/examples/go/goapp",
Expand Down
4 changes: 2 additions & 2 deletions plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "This plugin powers the Mattermost Apps Framework and is required for any Apps to run",
"homepage_url": "https://mattermost.com/marketplace/app-framework",
"support_url": "https://github.com/mattermost/mattermost-plugin-apps/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-apps/releases/tag/v1.0.1",
"version": "1.1.0",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-apps/releases/tag/v1.2.0",
"version": "1.2.0",
"min_server_version": "7.2.0",
"server": {
"executables": {
Expand Down
2 changes: 1 addition & 1 deletion test/hello-world/hello.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var Manifest = apps.Manifest{
AppID: "hello-world",

// App's release/version.
Version: "v1.1.0",
Version: "v1.2.0",

// A (long) display name for the app.
DisplayName: "Hello, world!",
Expand Down
2 changes: 1 addition & 1 deletion test/restapitest/bindings.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func newBindingsApp(_ *Helper, appID apps.AppID, bindExpand *apps.Expand, bindin
app.App = goapp.MakeAppOrPanic(
apps.Manifest{
AppID: appID,
Version: "v1.0.0",
Version: "v1.2.0",
DisplayName: "Returns bindings",
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/test/restapitest",
},
Expand Down
2 changes: 1 addition & 1 deletion test/restapitest/echo.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func newEchoApp() *goapp.App {
return goapp.MakeAppOrPanic(
apps.Manifest{
AppID: echoID,
Version: "v1.1.0",
Version: "v1.2.0",
DisplayName: "Echos call requests as text/json",
Icon: "icon.png",
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/test/restapitest",
Expand Down
2 changes: 1 addition & 1 deletion test/restapitest/kv.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func newKVApp(t testing.TB) *goapp.App {
app := goapp.MakeAppOrPanic(
apps.Manifest{
AppID: kvID,
Version: "v1.1.0",
Version: "v1.2.0",
DisplayName: "tests access to the KV store",
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/test/restapitest",
RequestedPermissions: []apps.Permission{
Expand Down
2 changes: 1 addition & 1 deletion test/restapitest/notify.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func newNotifyApp(th *Helper, received chan apps.CallRequest) *goapp.App {
app := goapp.MakeAppOrPanic(
apps.Manifest{
AppID: "testnotify",
Version: "v1.1.0",
Version: "v1.2.0",
DisplayName: "Tests notifications",
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/test/restapitest",
RequestedPermissions: []apps.Permission{
Expand Down
2 changes: 1 addition & 1 deletion test/restapitest/oauth2.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func newOAuth2App(t *testing.T) *goapp.App {
app := goapp.MakeAppOrPanic(
apps.Manifest{
AppID: oauth2ID,
Version: "v1.1.0",
Version: "v1.2.0",
DisplayName: "tests App's OAuth2 APIs",
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/test/restapitest",
RequestedPermissions: []apps.Permission{
Expand Down
2 changes: 1 addition & 1 deletion test/restapitest/subscribe.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func newSubscribeApp(t testing.TB) *goapp.App {
app := goapp.MakeAppOrPanic(
apps.Manifest{
AppID: subID,
Version: "v1.1.0",
Version: "v1.2.0",
DisplayName: "tests Subscription API",
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/test/restapitest",
RequestedPermissions: []apps.Permission{
Expand Down
2 changes: 1 addition & 1 deletion test/restapitest/uninstall.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func newUninstallApp(th *Helper) *goapp.App {
app := goapp.MakeAppOrPanic(
apps.Manifest{
AppID: uninstallID,
Version: "v1.1.0",
Version: "v1.2.0",
DisplayName: "This app creates data to verify that UninstallApp cleans it up",
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/test/restapitest",
OnInstall: apps.NewCall("/install").ExpandActingUserClient(),
Expand Down

0 comments on commit 44db542

Please sign in to comment.