From 240b5d5235e00fd3c75b45c4998b30f0f9b780a2 Mon Sep 17 00:00:00 2001 From: Christopher Poile Date: Mon, 3 Jun 2019 09:53:51 -0400 Subject: [PATCH] Version bump to 1.0.0 --- plugin.json | 2 +- server/manifest.go | 2 +- webapp/package.json | 2 +- webapp/src/manifest.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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';