From b8665739fb63b2d491c61f1941eafea465935e5d Mon Sep 17 00:00:00 2001 From: Andrii Bodnar Date: Wed, 30 Oct 2024 11:58:56 +0200 Subject: [PATCH] chore: version 2.2.3 (#203) --- CHANGELOG.md | 5 +++++ package-lock.json | 4 ++-- package.json | 2 +- src/constants.ts | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fb2074..ccae399 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to the Crowdin Visual Studio Code Plugin extension will be d The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.2.3] + +- Fix bundles url +- Dependencies update + ## [2.2.2] - Fix file select diff --git a/package-lock.json b/package-lock.json index b052a4f..894107a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-crowdin", - "version": "2.2.2", + "version": "2.2.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "vscode-crowdin", - "version": "2.2.2", + "version": "2.2.3", "license": "MIT", "dependencies": { "@crowdin/crowdin-api-client": "1.36.0", diff --git a/package.json b/package.json index c966928..f6cfa97 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Crowdin", "description": "Crowdin Explorer for Visual Studio Code", "publisher": "Crowdin", - "version": "2.2.2", + "version": "2.2.3", "license": "MIT", "engines": { "vscode": "^1.66.0" diff --git a/src/constants.ts b/src/constants.ts index 3dc4810..4399b54 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -37,7 +37,7 @@ export class Constants { static readonly USE_GIT_BRANCH_PROPERTY = 'crowdin.useGitBranch'; //general static readonly CROWDIN_PATH_SEPARATOR = '/'; - static readonly PLUGIN_VERSION = '2.2.2'; + static readonly PLUGIN_VERSION = '2.2.3'; static readonly CLIENT_RETRIES = 5; static readonly CLIENT_RETRY_WAIT_INTERVAL_MS = 750; static VSCODE_VERSION: string;