diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c95cf4..364eeea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -84,3 +84,11 @@ or empty source string keys. - The default value for the `hashKeys` option of the `push` command has been flipped, so by default the tool **does not** hash the keys of the provided source strings, respecting the original keys passed by the developer. + +## Transifex Command Line Tool 2.1.0 + +*August 21, 2023* + +- Extra option for the `push` command has been introduced: `--excluded-files` +that excludes the provided filenames from processing, filtering out any included +strings. diff --git a/Sources/TXCli/main.swift b/Sources/TXCli/main.swift index 50bb1a0..78c1b80 100644 --- a/Sources/TXCli/main.swift +++ b/Sources/TXCli/main.swift @@ -42,7 +42,7 @@ that can be bundled with the iOS application. The tool can be also used to force CDS cache invalidation so that the next pull command will fetch fresh translations from CDS. """, - version: "2.0.0", + version: "2.1.0", subcommands: [Push.self, Pull.self, Invalidate.self]) }