diff --git a/manifest.json b/manifest.json index 69ec3d5..62d1d1a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "github-copilot", "name": "Github Copilot", - "version": "1.0.6", + "version": "1.0.7", "minAppVersion": "1.5.12", "description": "Implement suggestions from Github Copilot directly in your editor.", "author": "Vasseur Pierre-Adrien", diff --git a/package-lock.json b/package-lock.json index 627af90..0e46439 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-github-copilot", - "version": "1.0.6", + "version": "1.0.7", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "obsidian-github-copilot", - "version": "1.0.6", + "version": "1.0.7", "license": "MIT", "dependencies": { "@pierrad/ts-lsp-client": "^1.0.5", diff --git a/package.json b/package.json index 9344cca..3ce6efa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-github-copilot", - "version": "1.0.6", + "version": "1.0.7", "description": "Implement suggestions from Github Copilot directly in your editor.", "main": "main.js", "scripts": { diff --git a/src/main.ts b/src/main.ts index a15230f..c439ac5 100644 --- a/src/main.ts +++ b/src/main.ts @@ -27,7 +27,7 @@ export default class CopilotPlugin extends Plugin { copilotAgent: CopilotAgent; private cmExtensionManager: ExtensionManager; private eventManager: EventManager; - version = "1.0.6"; + version = "1.0.7"; async onload() { this.settingsTab = new CopilotPluginSettingTab(this.app, this);