From 1248ffaae83f4d4179ec7392ac430c704dfeece3 Mon Sep 17 00:00:00 2001 From: Felipe Martin <812088+fmartingr@users.noreply.github.com> Date: Fri, 6 Oct 2023 15:47:48 +0200 Subject: [PATCH] refactor: use com.mattermost.gcal plugin id and 1.0.1 bump (#42) * Use com.mattermost.gcal plugin id * 1.0.1 bump --- README.md | 2 +- plugin.json | 6 +++--- server/manifest.go | 4 ++-- webapp/src/manifest.js | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 31e4b55..6274368 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ A Google Calendar plugin for Mattermost. 1. Clone this repository. 1. Run `make dist`. -2. When the build process finishes the plugin tarball will be available at `dist/com.mattermost.google-calendar-$(VERSION).tar.gz` +2. When the build process finishes the plugin tarball will be available at `dist/com.mattermost.gcal-$(VERSION).tar.gz` 3. In your Mattermost Server, go to **System Console > Plugin Management** and upload the `.tar.gz` file to install the plugin. diff --git a/plugin.json b/plugin.json index 584e815..5be9a3f 100644 --- a/plugin.json +++ b/plugin.json @@ -1,12 +1,12 @@ { - "id": "com.mattermost.google-calendar", + "id": "com.mattermost.gcal", "name": "Google Calendar", "description": "Google Calendar Integration", "homepage_url": "https://github.com/mattermost/mattermost-plugin-google-calendar", "support_url": "https://github.com/mattermost/mattermost-plugin-google-calendar/issues", - "release_notes_url": "https://github.com/mattermost/mattermost-plugin-google-calendar/releases/tag/v1.0.0", + "release_notes_url": "https://github.com/mattermost/mattermost-plugin-google-calendar/releases/tag/v1.0.1", "icon_path": "assets/profile-gcal.svg", - "version": "1.0.0", + "version": "1.0.1", "min_server_version": "6.3.0", "server": { "executables": { diff --git a/server/manifest.go b/server/manifest.go index 3349f53..7e22ec9 100644 --- a/server/manifest.go +++ b/server/manifest.go @@ -6,6 +6,6 @@ var manifest = struct { ID string Version string }{ - ID: "com.mattermost.google-calendar", - Version: "1.0.0", + ID: "com.mattermost.gcal", + Version: "1.0.1", } diff --git a/webapp/src/manifest.js b/webapp/src/manifest.js index a2598fb..25c51ed 100644 --- a/webapp/src/manifest.js +++ b/webapp/src/manifest.js @@ -1,4 +1,4 @@ // This file is automatically generated. Do not modify it manually. -export const id = 'com.mattermost.google-calendar'; -export const version = '1.0.0'; +export const id = 'com.mattermost.gcal'; +export const version = '1.0.1';