From 05dd2de750474738374508311c3fb233cd46c54c Mon Sep 17 00:00:00 2001 From: Hanzei <16541325+hanzei@users.noreply.github.com> Date: Thu, 4 Apr 2019 16:44:40 +0200 Subject: [PATCH] Start with version 0.1.0 (#35) --- plugin.json | 2 +- server/manifest.go | 2 +- webapp/src/manifest.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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';