Skip to content

Commit bf71a3d

Browse files
authored
Merge pull request #677 from Iterable/MOB-11735-release-2-0-2
[MOB-11735] release-2-0-2
2 parents 134fd9a + 0ffa93b commit bf71a3d

File tree

6 files changed

+1093
-1948
lines changed

6 files changed

+1093
-1948
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ android.iml
4343
# Cocoapods
4444
#
4545
example/ios/Pods
46+
Gemfile.lock
47+
Podfile.lock
4648

4749
# Ruby
4850
example/vendor/
@@ -86,4 +88,4 @@ android/generated
8688
.env
8789
.xcode.env.local
8890
coverage/
89-
docs/
91+
docs/

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 2.0.2
2+
### Fixes
3+
- Migrate AppDelegate to Swift and remove Objective-C files
4+
([06b82a0](https://github.com/Iterable/react-native-sdk/commit/06b82a0))
5+
- Fixed misspelling ([bc2e84c](https://github.com/Iterable/react-native-sdk/commit/bc2e84c))
6+
17
## 2.0.1
28
- Added support for React Native New Architecture through interop. **WARNING**:
39
As support for the New Architecture is through interop, developers should use
@@ -241,4 +247,4 @@ To use this version of Iterable's React Native SDK, you'll need to update your n
241247
- At the end of the `onCreate` method, add this line of code:
242248
```java
243249
IterableApi.setContext(this);
244-
```
250+
```

example/Gemfile.lock

Lines changed: 0 additions & 124 deletions
This file was deleted.

package.json

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@iterable/react-native-sdk",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "Iterable SDK for React Native.",
55
"source": "./src/index.tsx",
66
"main": "./lib/module/index.js",
@@ -64,22 +64,22 @@
6464
"registry": "https://registry.npmjs.org/"
6565
},
6666
"devDependencies": {
67-
"@commitlint/config-conventional": "^17.0.2",
67+
"@commitlint/config-conventional": "^19.6.0",
6868
"@evilmartians/lefthook": "^1.5.0",
6969
"@react-native/babel-preset": "0.79.3",
7070
"@react-native/eslint-config": "0.79.3",
7171
"@react-native/metro-config": "0.79.3",
7272
"@react-native/typescript-config": "0.79.3",
7373
"@react-navigation/native": "^6.1.18",
74-
"@release-it/conventional-changelog": "^5.0.0",
74+
"@release-it/conventional-changelog": "^9.0.2",
7575
"@testing-library/jest-native": "^5.4.3",
7676
"@testing-library/react-native": "^12.7.2",
7777
"@types/jest": "^29.5.5",
7878
"@types/react": "^19.0.0",
7979
"@types/react-native-vector-icons": "^6.4.18",
8080
"@typescript-eslint/eslint-plugin": "^8.13.0",
8181
"@typescript-eslint/parser": "^8.13.0",
82-
"commitlint": "^17.0.2",
82+
"commitlint": "^19.6.1",
8383
"del-cli": "^5.1.0",
8484
"eslint": "^8.51.0",
8585
"eslint-config-prettier": "^9.0.0",
@@ -97,7 +97,7 @@
9797
"react-native-vector-icons": "^10.2.0",
9898
"react-native-webview": "^13.13.1",
9999
"react-test-renderer": "19.0.0",
100-
"release-it": "^15.0.0",
100+
"release-it": "^17.10.0",
101101
"turbo": "^1.10.7",
102102
"typedoc": "^0.26.11",
103103
"typedoc-plugin-coverage": "^3.3.0",
@@ -133,7 +133,7 @@
133133
"release-it": {
134134
"git": {
135135
"commitMessage": "chore: release ${version}",
136-
"tagName": "v${version}"
136+
"tagName": "${version}"
137137
},
138138
"npm": {
139139
"publish": true
@@ -143,7 +143,18 @@
143143
},
144144
"plugins": {
145145
"@release-it/conventional-changelog": {
146-
"preset": "angular"
146+
"preset": "angular",
147+
"types": [
148+
{
149+
"type": "feat",
150+
"section": "Features"
151+
},
152+
{
153+
"type": "fix",
154+
"section": "Bug Fixes"
155+
},
156+
{}
157+
]
147158
}
148159
}
149160
},

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.1',
6+
version: '2.0.2',
77
};

0 commit comments

Comments
 (0)