diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f7f8c2..e3dc07d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -109,3 +109,11 @@ bundled source locale translations, in case the target translations was not found, was trying to access the file by using the format that Transifex uses (e.g. `en_US`) instead of the one that iOS and Xcode use (e.g. `en-US`). The logic now normalizes the locale name to match the format that iOS accepts. + +## Transifex iOS SDK 2.0.2 + +*May 29, 2024* + +- Adds full support for String Catalogs support. +- Adds support for substitution phrases on old Strings Dictionary file format. +- Updates unit tests. diff --git a/Sources/Transifex/Core.swift b/Sources/Transifex/Core.swift index 34daefe..a044833 100644 --- a/Sources/Transifex/Core.swift +++ b/Sources/Transifex/Core.swift @@ -361,7 +361,7 @@ render '\(stringToRender)' locale code: \(localeCode) params: \(params). Error: /// A static class that is the main point of entry for all the functionality of Transifex Native throughout the SDK. public final class TXNative : NSObject { /// The SDK version - internal static let version = "2.0.1" + internal static let version = "2.0.2" /// The filename of the file that holds the translated strings and it's bundled inside the app. public static let STRINGS_FILENAME = "txstrings.json"