From 0bac5797eb6088d535de73e1bf2cf1e2260ac883 Mon Sep 17 00:00:00 2001 From: Christopher Poile Date: Wed, 14 Aug 2019 17:39:17 -0400 Subject: [PATCH] circle-ci update; version bump (#10) * circle-ci update; version bump * fix for an oops * coverage -> test --- .circleci/config.yml | 3 ++- plugin.json | 2 +- server/manifest.go | 2 +- webapp/src/manifest.js | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1c26fb2..598fb77 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,7 +4,8 @@ orbs: plugin-ci: mattermost/plugin-ci@volatile workflows: - ci-build: + version: 2 + ci: jobs: - plugin-ci/lint: filters: diff --git a/plugin.json b/plugin.json index 431b05a..678c1d8 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": "1.0.0", + "version": "1.0.1", "server": { "executables": { "linux-amd64": "server/dist/plugin-linux-amd64", diff --git a/server/manifest.go b/server/manifest.go index 47213c9..8a3f467 100644 --- a/server/manifest.go +++ b/server/manifest.go @@ -5,5 +5,5 @@ var manifest = struct { Version string }{ Id: "com.mattermost.custom-attributes", - Version: "1.0.0", + Version: "1.0.1", } diff --git a/webapp/src/manifest.js b/webapp/src/manifest.js index 275a245..18ccdbf 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 = '1.0.0'; +export const version = '1.0.1';