diff --git a/CHANGELOG.md b/CHANGELOG.md index 66338906a..b30f7f186 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +# [3.14.0](https://github.com/crowdin/crowdin-cli/compare/3.13.0...3.14.0) (2023-09-08) + + +### Bug Fixes + +* add api subpath to the base url ([#622](https://github.com/crowdin/crowdin-cli/issues/622)) ([f13915f](https://github.com/crowdin/crowdin-cli/commit/f13915f64d4b5b7bb8945f5d1f28e0e24cee7ed1)) +* source downloading when source and dest have different base name ([#608](https://github.com/crowdin/crowdin-cli/issues/608)) ([60a760a](https://github.com/crowdin/crowdin-cli/commit/60a760a8e33b345ec2d4a2b53c983d850fe171c3)) +* translation pattern creation on windows ([#604](https://github.com/crowdin/crowdin-cli/issues/604)) ([c4ad0af](https://github.com/crowdin/crowdin-cli/commit/c4ad0af7f3fc1f7f47dd1850c193c3b04f29d1fc)) +* unix tests on windows ([#580](https://github.com/crowdin/crowdin-cli/issues/580)) ([9be90fc](https://github.com/crowdin/crowdin-cli/commit/9be90fcc750b486d03907dc5864c490d7632d0fa)) + + +### Features + +* add the 'export_quotes' support for JavaScript files ([#621](https://github.com/crowdin/crowdin-cli/issues/621)) ([e6c1b08](https://github.com/crowdin/crowdin-cli/commit/e6c1b0867ef0dfa9f03ff9a4ec89a2f1afddd17a)) +* New command: distribution ([#593](https://github.com/crowdin/crowdin-cli/issues/593)) ([9312fe1](https://github.com/crowdin/crowdin-cli/commit/9312fe1b38a86fc6dccfdfb4e054433b673c3924)) +* new command: screenshot ([#631](https://github.com/crowdin/crowdin-cli/issues/631)) ([c704029](https://github.com/crowdin/crowdin-cli/commit/c704029ac12c0e76b614d159f735c346e8b73422)) +* reduce error severity for files being updated. ([#623](https://github.com/crowdin/crowdin-cli/issues/623)) ([6887f03](https://github.com/crowdin/crowdin-cli/commit/6887f039b504c15eba6c1650b02dcb37e79e1352)) +* task add command - add '--include-pre-translated-strings-only' option ([#634](https://github.com/crowdin/crowdin-cli/issues/634)) ([0c45d27](https://github.com/crowdin/crowdin-cli/commit/0c45d272ce21a19d25c20cd143be980248a91677)) + # [3.13.0](https://github.com/crowdin/crowdin-cli/compare/3.12.0...3.13.0) (2023-06-12) diff --git a/build.gradle b/build.gradle index 1a5e664b3..fcee56e94 100755 --- a/build.gradle +++ b/build.gradle @@ -12,7 +12,7 @@ plugins { apply plugin: 'checkstyle' group 'com.crowdin' -version '3.13.0' +version '3.14.0' sourceCompatibility = 1.8 diff --git a/chocolatey/crowdin-cli.nuspec b/chocolatey/crowdin-cli.nuspec index 5d7fd76a5..49b61154e 100644 --- a/chocolatey/crowdin-cli.nuspec +++ b/chocolatey/crowdin-cli.nuspec @@ -2,7 +2,7 @@ crowdin-cli - 3.13.0 + 3.14.0 https://github.com/crowdin/crowdin-cli/tree/cli3/chocolatey crowdin Crowdin CLI (Portable) diff --git a/package-lock.json b/package-lock.json index 2a67b2a10..96fd9bc3e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@crowdin/cli", - "version": "3.13.0", + "version": "3.14.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@crowdin/cli", - "version": "3.13.0", + "version": "3.14.0", "license": "MIT", "dependencies": { "command-exists-promise": "^2.0.2", diff --git a/package.json b/package.json index e4387565e..60fd6420f 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "type": "git", "url": "https://github.com/crowdin/crowdin-cli.git" }, - "version": "3.13.0", + "version": "3.14.0", "bin": { "crowdin": "jdeploy-bundle/jdeploy.js" }, diff --git a/pkgbuild/PKGBUILD b/pkgbuild/PKGBUILD index 550e2e271..7771be7fb 100644 --- a/pkgbuild/PKGBUILD +++ b/pkgbuild/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Senya pkgname=crowdin-cli -pkgver=3.13.0 +pkgver=3.14.0 pkgrel=1 pkgdesc="Command line tool that allows you to manage and synchronize localization resources with your Crowdin project" url="https://support.crowdin.com/cli-tool/" diff --git a/src/main/resources/crowdin.properties b/src/main/resources/crowdin.properties index 701b16b4d..f8fe96461 100755 --- a/src/main/resources/crowdin.properties +++ b/src/main/resources/crowdin.properties @@ -1,5 +1,5 @@ application.name=crowdin-cli -application.version=3.13.0 +application.version=3.14.0 application.base_url=https://api.crowdin.com application.user_agent=crowdin-java-cli application.version_file_url=https://downloads.crowdin.com/cli/v3/version.txt