Skip to content

Commit 2b96cbd

Browse files
authored
Merge pull request #714 from Iterable/release/MOB-12199-rn-release-2-0-3
[MOB-12199] rn-release-2-0-3
2 parents 6f81dcc + 912df89 commit 2b96cbd

File tree

4 files changed

+28
-11
lines changed

4 files changed

+28
-11
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 2.0.3
2+
3+
### Updates
4+
- Add in-app message manager with lazy initialization to avoid circular dependency ([6feec35](https://github.com/Iterable/react-native-sdk/commit/6feec35))
5+
6+
### Fixes
7+
- 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)
8+
- Update Xcode project configuration to include CocoaPods build phases and settings ([23a9e79](https://github.com/Iterable/react-native-sdk/commit/23a9e79))
9+
- Enable CodeQl Advanced Config ([7346e56](https://github.com/Iterable/react-native-sdk/commit/7346e56))
10+
- Upload coverage report to Qlty ([6872621](https://github.com/Iterable/react-native-sdk/commit/6872621))
11+
- Simplify IterableInAppManager usage in tests by directly accessing Iterable.inAppManager ([6deeae3](https://github.com/Iterable/react-native-sdk/commit/6deeae3))
12+
- Correct markdown link syntax in IterableInAppManager documentation ([78e22b2](https://github.com/Iterable/react-native-sdk/commit/78e22b2))
13+
14+
115
## 2.0.2
216
### Fixes
317
- Migrate AppDelegate to Swift and remove Objective-C files

README.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,16 @@ Iterable. It supports JavaScript and TypeScript.
1515

1616
<!-- code_chunk_output -->
1717

18-
- [Requirements](#requirements)
19-
- [Architecture Support](#architecture-support)
20-
- [Installation](#installation)
21-
- [Features](#features)
22-
- [Sample projects](#sample-projects)
23-
- [Version mapping](#version-mapping)
24-
- [Release notes, support and troubleshooting](#release-notes-support-and-troubleshooting)
25-
- [License](#license)
26-
- [Want to contribute?](#want-to-contribute)
18+
- [Iterable's React Native SDK](#iterables-react-native-sdk)
19+
- [Requirements](#requirements)
20+
- [Architecture Support](#architecture-support)
21+
- [Installation](#installation)
22+
- [Features](#features)
23+
- [Sample projects](#sample-projects)
24+
- [Version mapping](#version-mapping)
25+
- [Release notes, support and troubleshooting](#release-notes-support-and-troubleshooting)
26+
- [License](#license)
27+
- [Want to contribute?](#want-to-contribute)
2728

2829
<!-- /code_chunk_output -->
2930

@@ -90,6 +91,8 @@ For quick reference, the following table lists the versions of the [Android SDK]
9091

9192
| RN SDK Version | Android SDK Version | iOS SDK Version |
9293
| --------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | --------------- |
94+
| [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)
95+
| [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)
9396
| [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)
9497
| [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)
9598
| [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)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@iterable/react-native-sdk",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "Iterable SDK for React Native.",
55
"source": "./src/index.tsx",
66
"main": "./lib/module/index.js",

src/itblBuildInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
* It contains the version of the package
44
*/
55
export const buildInfo = {
6-
version: '2.0.2',
6+
version: '2.0.3',
77
};

0 commit comments

Comments
 (0)