Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ android.iml
# Cocoapods
#
example/ios/Pods
Gemfile.lock
Podfile.lock

# Ruby
example/vendor/
Expand Down Expand Up @@ -86,4 +88,4 @@ android/generated
.env
.xcode.env.local
coverage/
docs/
docs/
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 2.0.2
### Fixes
- Migrate AppDelegate to Swift and remove Objective-C files
([06b82a0](https://github.com/Iterable/react-native-sdk/commit/06b82a0))
- Fixed misspelling ([bc2e84c](https://github.com/Iterable/react-native-sdk/commit/bc2e84c))

## 2.0.1
- Added support for React Native New Architecture through interop. **WARNING**:
As support for the New Architecture is through interop, developers should use
Expand Down Expand Up @@ -241,4 +247,4 @@ To use this version of Iterable's React Native SDK, you'll need to update your n
- At the end of the `onCreate` method, add this line of code:
```java
IterableApi.setContext(this);
```
```
124 changes: 0 additions & 124 deletions example/Gemfile.lock

This file was deleted.

25 changes: 18 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iterable/react-native-sdk",
"version": "2.0.1",
"version": "2.0.2",
"description": "Iterable SDK for React Native.",
"source": "./src/index.tsx",
"main": "./lib/module/index.js",
Expand Down Expand Up @@ -64,22 +64,22 @@
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.2",
"@commitlint/config-conventional": "^19.6.0",
"@evilmartians/lefthook": "^1.5.0",
"@react-native/babel-preset": "0.79.3",
"@react-native/eslint-config": "0.79.3",
"@react-native/metro-config": "0.79.3",
"@react-native/typescript-config": "0.79.3",
"@react-navigation/native": "^6.1.18",
"@release-it/conventional-changelog": "^5.0.0",
"@release-it/conventional-changelog": "^9.0.2",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.7.2",
"@types/jest": "^29.5.5",
"@types/react": "^19.0.0",
"@types/react-native-vector-icons": "^6.4.18",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"commitlint": "^17.0.2",
"commitlint": "^19.6.1",
"del-cli": "^5.1.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
Expand All @@ -97,7 +97,7 @@
"react-native-vector-icons": "^10.2.0",
"react-native-webview": "^13.13.1",
"react-test-renderer": "19.0.0",
"release-it": "^15.0.0",
"release-it": "^17.10.0",
"turbo": "^1.10.7",
"typedoc": "^0.26.11",
"typedoc-plugin-coverage": "^3.3.0",
Expand Down Expand Up @@ -133,7 +133,7 @@
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
"tagName": "${version}"
},
"npm": {
"publish": true
Expand All @@ -143,7 +143,18 @@
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
"preset": "angular",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{}
]
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/itblBuildInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
* It contains the version of the package
*/
export const buildInfo = {
version: '2.0.1',
version: '2.0.2',
};
Loading
Loading