Skip to content

Commit 0856d8f

Browse files
levbmattermod
andauthored
Release v1.1.0 (#345)
* Release v1.1.0 * PR feedback: updated feature flag Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
1 parent 002eb98 commit 0856d8f

14 files changed

Lines changed: 14 additions & 14 deletions

File tree

cmd/appsctl/aws.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ func helloServerless() apps.App {
160160
DeployType: apps.DeployAWSLambda,
161161
Manifest: apps.Manifest{
162162
AppID: "hello-serverless",
163-
Version: "1.0.0",
163+
Version: "v1.1.0",
164164
Deploy: apps.Deploy{
165165
AWSLambda: &apps.AWSLambda{
166166
Functions: []apps.AWSLambdaFunction{

dev/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ services:
2020
MM_FEATUREFLAGS_AppsEnabled: "true"
2121

2222
# This can be updated with release versions from https://github.com/mattermost/mattermost-plugin-apps/releases
23-
MM_FEATUREFLAGS_PluginApps: "1.0.0"
23+
MM_FEATUREFLAGS_PluginApps: "1.1.0"
2424

2525
MM_LOGSETTINGS_CONSOLELEVEL: DEBUG
2626
MM_LOGSETTINGS_FILELEVEL: DEBUG

examples/go/hello-jwt/hello.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var iconData []byte
2222

2323
var manifest = apps.Manifest{
2424
AppID: "hello-jwt",
25-
Version: "v1.0.0",
25+
Version: "v1.1.0",
2626
DisplayName: "Hello, JWT!",
2727
Icon: "icon.png",
2828
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/examples/go/hello-jwt",

examples/go/hello-oauth2/hello.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var iconData []byte
2525

2626
var manifest = apps.Manifest{
2727
AppID: "hello-oauth2",
28-
Version: "1.0.0",
28+
Version: "v1.1.0",
2929
DisplayName: "Hello, OAuth2!",
3030
Icon: "icon.png",
3131
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/examples/go/hello-oauth2",

examples/go/hello-serverless/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"app_id": "hello-serverless",
3-
"version": "1.0.0",
3+
"version": "v1.1.0",
44
"display_name": "Hello, Serverless!",
55
"homepage_url": "https://github.com/mattermost/mattermost-plugin-apps",
66
"requested_permissions": [

examples/go/hello-webhooks/hello.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var iconData []byte
2424

2525
var manifest = apps.Manifest{
2626
AppID: "hello-webhooks",
27-
Version: "1.0.0",
27+
Version: "v1.1.0",
2828
DisplayName: "Hello, Webhooks!",
2929
Icon: "icon.png",
3030
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/examples/go/hello-webhooks",

examples/go/hello-world/hello.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var Manifest = apps.Manifest{
2626
AppID: "hello-world",
2727

2828
// App's release/version.
29-
Version: "v1.0.0",
29+
Version: "v1.1.0",
3030

3131
// A (long) display name for the app.
3232
DisplayName: "Hello, world!",

examples/goapp/expand/app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func main() {
1717
app := goapp.MakeAppOrPanic(
1818
apps.Manifest{
1919
AppID: "example-expand",
20-
Version: "v1.0.0",
20+
Version: "v1.1.0",
2121
DisplayName: "A Mattermost app illustrating how `Call.Expand` works",
2222
Icon: "icon.png",
2323
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/examples/go/expand",

examples/goapp/goapp/app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func main() {
1818
goapp.MakeAppOrPanic(
1919
apps.Manifest{
2020
AppID: "hello-goapp",
21-
Version: "v1.0.0",
21+
Version: "v1.1.0",
2222
DisplayName: "Hello, world! as a goapp",
2323
Icon: "icon.png",
2424
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/examples/go/goapp",

plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"homepage_url": "https://mattermost.com/marketplace/app-framework",
66
"support_url": "https://github.com/mattermost/mattermost-plugin-apps/issues",
77
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-apps/releases/tag/v1.0.1",
8-
"version": "1.0.1",
8+
"version": "1.1.0",
99
"min_server_version": "6.6.0",
1010
"server": {
1111
"executables": {

0 commit comments

Comments
 (0)