diff --git a/CHANGELOG.md b/CHANGELOG.md index 5caec2b9a..c08e0ed2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## 2.0.3 + +### Updates +- Add in-app message manager with lazy initialization to avoid circular dependency ([6feec35](https://github.com/Iterable/react-native-sdk/commit/6feec35)) + +### Fixes +- Update Iterable-iOS-SDK to 6.5.4.1 to fix issue #701 (performAndWait) ([0bb4a24](https://github.com/Iterable/react-native-sdk/commit/0bb4a24)), closes [#701](https://github.com/Iterable/react-native-sdk/issues/701) +- Update Xcode project configuration to include CocoaPods build phases and settings ([23a9e79](https://github.com/Iterable/react-native-sdk/commit/23a9e79)) +- Enable CodeQl Advanced Config ([7346e56](https://github.com/Iterable/react-native-sdk/commit/7346e56)) +- Upload coverage report to Qlty ([6872621](https://github.com/Iterable/react-native-sdk/commit/6872621)) +- Simplify IterableInAppManager usage in tests by directly accessing Iterable.inAppManager ([6deeae3](https://github.com/Iterable/react-native-sdk/commit/6deeae3)) +- Correct markdown link syntax in IterableInAppManager documentation ([78e22b2](https://github.com/Iterable/react-native-sdk/commit/78e22b2)) + + ## 2.0.2 ### Fixes - Migrate AppDelegate to Swift and remove Objective-C files diff --git a/README.md b/README.md index 34fa04068..dd3918d21 100644 --- a/README.md +++ b/README.md @@ -15,15 +15,16 @@ Iterable. It supports JavaScript and TypeScript. -- [Requirements](#requirements) -- [Architecture Support](#architecture-support) -- [Installation](#installation) -- [Features](#features) -- [Sample projects](#sample-projects) -- [Version mapping](#version-mapping) -- [Release notes, support and troubleshooting](#release-notes-support-and-troubleshooting) -- [License](#license) -- [Want to contribute?](#want-to-contribute) +- [Iterable's React Native SDK](#iterables-react-native-sdk) + - [Requirements](#requirements) + - [Architecture Support](#architecture-support) + - [Installation](#installation) + - [Features](#features) + - [Sample projects](#sample-projects) + - [Version mapping](#version-mapping) + - [Release notes, support and troubleshooting](#release-notes-support-and-troubleshooting) + - [License](#license) + - [Want to contribute?](#want-to-contribute) @@ -90,6 +91,8 @@ For quick reference, the following table lists the versions of the [Android SDK] | RN SDK Version | Android SDK Version | iOS SDK Version | | --------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | --------------- | +| [2.0.3](https://www.npmjs.com/package/@iterable/react-native-sdk/v/2.0.3) | [3.5.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.5.2) | [6.5.4](https://github.com/Iterable/swift-sdk/releases/tag/6.5.4) +| [2.0.2](https://www.npmjs.com/package/@iterable/react-native-sdk/v/2.0.2) | [3.5.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.5.2) | [6.5.4](https://github.com/Iterable/swift-sdk/releases/tag/6.5.4) | [2.0.1](https://www.npmjs.com/package/@iterable/react-native-sdk/v/2.0.1) | [3.5.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.5.2) | [6.5.4](https://github.com/Iterable/swift-sdk/releases/tag/6.5.4) | [2.0.0](https://www.npmjs.com/package/@iterable/react-native-sdk/v/2.0.0) | [3.5.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.5.2) | [6.5.4](https://github.com/Iterable/swift-sdk/releases/tag/6.5.4) | [2.0.0-beta.1](https://www.npmjs.com/package/@iterable/react-native-sdk/v/2.0.0-beta.1) | [3.5.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.5.2) | [6.5.4](https://github.com/Iterable/swift-sdk/releases/tag/6.5.4) diff --git a/package.json b/package.json index 4a8479336..1df396726 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@iterable/react-native-sdk", - "version": "2.0.2", + "version": "2.0.3", "description": "Iterable SDK for React Native.", "source": "./src/index.tsx", "main": "./lib/module/index.js", diff --git a/src/itblBuildInfo.ts b/src/itblBuildInfo.ts index dd1f0d1a1..0cdaa2c54 100644 --- a/src/itblBuildInfo.ts +++ b/src/itblBuildInfo.ts @@ -3,5 +3,5 @@ * It contains the version of the package */ export const buildInfo = { - version: '2.0.2', + version: '2.0.3', };