Skip to content

Commit 44db542

Browse files
authored
Release v1.2.0 (#415)
1 parent 3781a13 commit 44db542

12 files changed

Lines changed: 13 additions & 13 deletions

File tree

cmd/appsctl/aws.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ func helloServerless() apps.App {
181181
DeployType: apps.DeployAWSLambda,
182182
Manifest: apps.Manifest{
183183
AppID: "hello-serverless",
184-
Version: "v1.1.0",
184+
Version: "v1.2.0",
185185
Deploy: apps.Deploy{
186186
AWSLambda: &apps.AWSLambda{
187187
Functions: []apps.AWSLambdaFunction{

goapp/expand/app.go

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

goapp/hello-world/app.go

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

plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"description": "This plugin powers the Mattermost Apps Framework and is required for any Apps to run",
55
"homepage_url": "https://mattermost.com/marketplace/app-framework",
66
"support_url": "https://github.com/mattermost/mattermost-plugin-apps/issues",
7-
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-apps/releases/tag/v1.0.1",
8-
"version": "1.1.0",
7+
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-apps/releases/tag/v1.2.0",
8+
"version": "1.2.0",
99
"min_server_version": "7.2.0",
1010
"server": {
1111
"executables": {

test/hello-world/hello.go

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

3232
// App's release/version.
33-
Version: "v1.1.0",
33+
Version: "v1.2.0",
3434

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

test/restapitest/bindings.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func newBindingsApp(_ *Helper, appID apps.AppID, bindExpand *apps.Expand, bindin
2929
app.App = goapp.MakeAppOrPanic(
3030
apps.Manifest{
3131
AppID: appID,
32-
Version: "v1.0.0",
32+
Version: "v1.2.0",
3333
DisplayName: "Returns bindings",
3434
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/test/restapitest",
3535
},

test/restapitest/echo.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func newEchoApp() *goapp.App {
3939
return goapp.MakeAppOrPanic(
4040
apps.Manifest{
4141
AppID: echoID,
42-
Version: "v1.1.0",
42+
Version: "v1.2.0",
4343
DisplayName: "Echos call requests as text/json",
4444
Icon: "icon.png",
4545
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/test/restapitest",

test/restapitest/kv.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func newKVApp(t testing.TB) *goapp.App {
2424
app := goapp.MakeAppOrPanic(
2525
apps.Manifest{
2626
AppID: kvID,
27-
Version: "v1.1.0",
27+
Version: "v1.2.0",
2828
DisplayName: "tests access to the KV store",
2929
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/test/restapitest",
3030
RequestedPermissions: []apps.Permission{

test/restapitest/notify.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func newNotifyApp(th *Helper, received chan apps.CallRequest) *goapp.App {
3030
app := goapp.MakeAppOrPanic(
3131
apps.Manifest{
3232
AppID: "testnotify",
33-
Version: "v1.1.0",
33+
Version: "v1.2.0",
3434
DisplayName: "Tests notifications",
3535
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/test/restapitest",
3636
RequestedPermissions: []apps.Permission{

test/restapitest/oauth2.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func newOAuth2App(t *testing.T) *goapp.App {
4141
app := goapp.MakeAppOrPanic(
4242
apps.Manifest{
4343
AppID: oauth2ID,
44-
Version: "v1.1.0",
44+
Version: "v1.2.0",
4545
DisplayName: "tests App's OAuth2 APIs",
4646
HomepageURL: "https://github.com/mattermost/mattermost-plugin-apps/test/restapitest",
4747
RequestedPermissions: []apps.Permission{

0 commit comments

Comments
 (0)