diff --git a/plugin.json b/plugin.json index 65c0fa3..431b05a 100644 --- a/plugin.json +++ b/plugin.json @@ -2,7 +2,7 @@ "id": "com.mattermost.custom-attributes", "name": "Custom User Attributes", "description": "Add custom user attributes to the Mattermost user profile popover.", - "version": "0.0.1", + "version": "1.0.0", "server": { "executables": { "linux-amd64": "server/dist/plugin-linux-amd64", diff --git a/server/manifest.go b/server/manifest.go index 338cafc..47213c9 100644 --- a/server/manifest.go +++ b/server/manifest.go @@ -5,5 +5,5 @@ var manifest = struct { Version string }{ Id: "com.mattermost.custom-attributes", - Version: "0.0.1", + Version: "1.0.0", } diff --git a/webapp/package.json b/webapp/package.json index 2f8df68..9bc89a6 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -1,6 +1,6 @@ { "name": "webapp", - "version": "0.0.1", + "version": "1.0.0", "description": "This plugin serves as a starting point for writing a Mattermost plugin.", "main": "src/index.js", "scripts": { diff --git a/webapp/src/manifest.js b/webapp/src/manifest.js index c760dce..275a245 100644 --- a/webapp/src/manifest.js +++ b/webapp/src/manifest.js @@ -1,2 +1,2 @@ export const id = 'com.mattermost.custom-attributes'; -export const version = '0.0.1'; +export const version = '1.0.0';