Skip to content

Commit

Permalink
Release v1.1.0 (#345)
Browse files Browse the repository at this point in the history
* Release v1.1.0

* PR feedback: updated feature flag

Co-authored-by: Mattermod <[email protected]>
  • Loading branch information
levb and mattermod authored May 24, 2022
1 parent 002eb98 commit 0856d8f
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion cmd/appsctl/aws.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
2 changes: 1 addition & 1 deletion dev/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/go/hello-jwt/hello.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion examples/go/hello-oauth2/hello.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion examples/go/hello-serverless/manifest.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion examples/go/hello-webhooks/hello.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion examples/go/hello-world/hello.go
Original file line number Diff line number Diff line change
Expand Up @@ -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!",
Expand Down
2 changes: 1 addition & 1 deletion examples/goapp/expand/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion examples/goapp/goapp/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion test/restapitest/echo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion test/restapitest/kv_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
2 changes: 1 addition & 1 deletion test/restapitest/oauth2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
2 changes: 1 addition & 1 deletion test/restapitest/subscribe_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down

0 comments on commit 0856d8f

Please sign in to comment.