Skip to content

Commit

Permalink
Fix channel header button and bump to 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jwilander committed Dec 13, 2018
1 parent ddb6c18 commit e95e7b8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion plugin.json
Expand Up @@ -2,7 +2,7 @@
"id": "zoom",
"name": "Zoom",
"description": "Zoom audio and video conferencing plugin for Mattermost 5.2+.",
"version": "1.0.2",
"version": "1.0.3",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
Expand Down
2 changes: 1 addition & 1 deletion server/manifest.go
Expand Up @@ -5,5 +5,5 @@ var manifest = struct {
Version string
}{
Id: "zoom",
Version: "1.0.2",
Version: "1.0.3",
}
2 changes: 1 addition & 1 deletion webapp/package.json
@@ -1,6 +1,6 @@
{
"name": "zoom",
"version": "1.0.2",
"version": "1.0.3",
"description": "Zoom audio and video conferencing plugin for Mattermost",
"author": "Mattermost",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/client/client.js
Expand Up @@ -3,7 +3,7 @@

import request from 'superagent';

import id from '../manifest';
import {id} from '../manifest';

export default class Client {
constructor() {
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/manifest.js
@@ -1,2 +1,2 @@
export const id = 'zoom';
export const version = '1.0.2';
export const version = '1.0.3';

0 comments on commit e95e7b8

Please sign in to comment.