diff --git a/cmd/appsctl/aws.go b/cmd/appsctl/aws.go index b46ac68ab..3ae73a3c2 100644 --- a/cmd/appsctl/aws.go +++ b/cmd/appsctl/aws.go @@ -160,7 +160,7 @@ func helloServerless() apps.App { DeployType: apps.DeployAWSLambda, Manifest: apps.Manifest{ AppID: "hello-serverless", - Version: "1.0.0", + Version: "v1.1.0", Deploy: apps.Deploy{ AWSLambda: &apps.AWSLambda{ Functions: []apps.AWSLambdaFunction{ diff --git a/dev/docker-compose.yml b/dev/docker-compose.yml index 98b63fd6b..2ad19e9ca 100644 --- a/dev/docker-compose.yml +++ b/dev/docker-compose.yml @@ -20,7 +20,7 @@ services: MM_FEATUREFLAGS_AppsEnabled: "true" # This can be updated with release versions from https://github.com/mattermost/mattermost-plugin-apps/releases - MM_FEATUREFLAGS_PluginApps: "1.0.0" + MM_FEATUREFLAGS_PluginApps: "1.1.0" MM_LOGSETTINGS_CONSOLELEVEL: DEBUG MM_LOGSETTINGS_FILELEVEL: DEBUG diff --git a/examples/go/hello-jwt/hello.go b/examples/go/hello-jwt/hello.go index 09d647de4..8e8835ead 100644 --- a/examples/go/hello-jwt/hello.go +++ b/examples/go/hello-jwt/hello.go @@ -22,7 +22,7 @@ var iconData []byte var manifest = apps.Manifest{ AppID: "hello-jwt", - Version: "v1.0.0", + Version: "v1.1.0", DisplayName: "Hello, JWT!", Icon: "icon.png", HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/examples/go/hello-jwt", diff --git a/examples/go/hello-oauth2/hello.go b/examples/go/hello-oauth2/hello.go index 71ebd1596..1c42d3c74 100644 --- a/examples/go/hello-oauth2/hello.go +++ b/examples/go/hello-oauth2/hello.go @@ -25,7 +25,7 @@ var iconData []byte var manifest = apps.Manifest{ AppID: "hello-oauth2", - Version: "1.0.0", + Version: "v1.1.0", DisplayName: "Hello, OAuth2!", Icon: "icon.png", HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/examples/go/hello-oauth2", diff --git a/examples/go/hello-serverless/manifest.json b/examples/go/hello-serverless/manifest.json index c439cf494..011cc3baa 100644 --- a/examples/go/hello-serverless/manifest.json +++ b/examples/go/hello-serverless/manifest.json @@ -1,6 +1,6 @@ { "app_id": "hello-serverless", - "version": "1.0.0", + "version": "v1.1.0", "display_name": "Hello, Serverless!", "homepage_url": "https://github.com/mattermost/mattermost-plugin-apps", "requested_permissions": [ diff --git a/examples/go/hello-webhooks/hello.go b/examples/go/hello-webhooks/hello.go index fff918f47..05adf6195 100644 --- a/examples/go/hello-webhooks/hello.go +++ b/examples/go/hello-webhooks/hello.go @@ -24,7 +24,7 @@ var iconData []byte var manifest = apps.Manifest{ AppID: "hello-webhooks", - Version: "1.0.0", + Version: "v1.1.0", DisplayName: "Hello, Webhooks!", Icon: "icon.png", HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/examples/go/hello-webhooks", diff --git a/examples/go/hello-world/hello.go b/examples/go/hello-world/hello.go index ec87c6f43..218945864 100644 --- a/examples/go/hello-world/hello.go +++ b/examples/go/hello-world/hello.go @@ -26,7 +26,7 @@ var Manifest = apps.Manifest{ AppID: "hello-world", // App's release/version. - Version: "v1.0.0", + Version: "v1.1.0", // A (long) display name for the app. DisplayName: "Hello, world!", diff --git a/examples/goapp/expand/app.go b/examples/goapp/expand/app.go index 4af3cbff7..82c2f7302 100644 --- a/examples/goapp/expand/app.go +++ b/examples/goapp/expand/app.go @@ -17,7 +17,7 @@ func main() { app := goapp.MakeAppOrPanic( apps.Manifest{ AppID: "example-expand", - Version: "v1.0.0", + Version: "v1.1.0", DisplayName: "A Mattermost app illustrating how `Call.Expand` works", Icon: "icon.png", HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/examples/go/expand", diff --git a/examples/goapp/goapp/app.go b/examples/goapp/goapp/app.go index 90f9ebd09..38ed3a82d 100644 --- a/examples/goapp/goapp/app.go +++ b/examples/goapp/goapp/app.go @@ -18,7 +18,7 @@ func main() { goapp.MakeAppOrPanic( apps.Manifest{ AppID: "hello-goapp", - Version: "v1.0.0", + Version: "v1.1.0", DisplayName: "Hello, world! as a goapp", Icon: "icon.png", HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/examples/go/goapp", diff --git a/plugin.json b/plugin.json index 8201aa3e4..3afcec832 100644 --- a/plugin.json +++ b/plugin.json @@ -5,7 +5,7 @@ "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.0.1", + "version": "1.1.0", "min_server_version": "6.6.0", "server": { "executables": { diff --git a/test/restapitest/echo_test.go b/test/restapitest/echo_test.go index 0fa3db3e0..82ee0d68b 100644 --- a/test/restapitest/echo_test.go +++ b/test/restapitest/echo_test.go @@ -34,7 +34,7 @@ func echoApp() *goapp.App { return goapp.MakeAppOrPanic( apps.Manifest{ AppID: echoID, - Version: "v1.0.0", + Version: "v1.1.0", DisplayName: "Echos call requests as text/json", Icon: "icon.png", HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/test/restapitest", diff --git a/test/restapitest/kv_test.go b/test/restapitest/kv_test.go index 3ade5eedc..8481e9271 100644 --- a/test/restapitest/kv_test.go +++ b/test/restapitest/kv_test.go @@ -24,7 +24,7 @@ func kvApp(t testing.TB) *goapp.App { app := goapp.MakeAppOrPanic( apps.Manifest{ AppID: kvID, - Version: "v1.0.0", + Version: "v1.1.0", DisplayName: "tests access to the KV store", HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/test/restapitest", RequestedPermissions: []apps.Permission{ diff --git a/test/restapitest/oauth2_test.go b/test/restapitest/oauth2_test.go index f4bfe84bd..8bda70152 100644 --- a/test/restapitest/oauth2_test.go +++ b/test/restapitest/oauth2_test.go @@ -35,7 +35,7 @@ func oauth2App(t *testing.T) *goapp.App { app := goapp.MakeAppOrPanic( apps.Manifest{ AppID: oauth2ID, - Version: "v1.0.0", + Version: "v1.1.0", DisplayName: "tests App's OAuth2 APIs", HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/test/restapitest", RequestedPermissions: []apps.Permission{ diff --git a/test/restapitest/subscribe_test.go b/test/restapitest/subscribe_test.go index f57e87921..f32e2e453 100644 --- a/test/restapitest/subscribe_test.go +++ b/test/restapitest/subscribe_test.go @@ -25,7 +25,7 @@ func subApp(t testing.TB) *goapp.App { app := goapp.MakeAppOrPanic( apps.Manifest{ AppID: subID, - Version: "v1.0.0", + Version: "v1.1.0", DisplayName: "tests Subscription API", HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/test/restapitest", RequestedPermissions: []apps.Permission{