diff --git a/plugin.json b/plugin.json index 270d606..6485f0e 100644 --- a/plugin.json +++ b/plugin.json @@ -2,7 +2,7 @@ "id": "com.mattermost.sample-plugin", "name": "Sample Plugin", "description": "This plugin serves as a starting point for writing a Mattermost plugin.", - "version": "0.0.1", + "version": "0.1.0", "server": { "executables": { "linux-amd64": "server/dist/plugin-linux-amd64", diff --git a/server/manifest.go b/server/manifest.go index e969f51..a54ff67 100644 --- a/server/manifest.go +++ b/server/manifest.go @@ -5,5 +5,5 @@ var manifest = struct { Version string }{ Id: "com.mattermost.sample-plugin", - Version: "0.0.1", + Version: "0.1.0", } diff --git a/webapp/src/manifest.js b/webapp/src/manifest.js index 3d3228e..0dd37aa 100644 --- a/webapp/src/manifest.js +++ b/webapp/src/manifest.js @@ -1,2 +1,2 @@ export const id = 'com.mattermost.sample-plugin'; -export const version = '0.0.1'; +export const version = '0.1.0';