@pinwheel/react-native-pinwheel 3.0.1 → 3.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/settings.json +4 -0
- package/CHANGELOG.md +11 -5
- package/RNPinwheelSDK.podspec +1 -1
- package/android/build.gradle +3 -3
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,18 +4,24 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
# 3.0.x Releases
|
|
6
6
|
|
|
7
|
-
- `3.0.x` Releases - [3.0.0](#300) | [3.0.1](#301)
|
|
8
|
-
|
|
9
|
-
### [3.0.1](https://github.com/underdog-tech/pinwheel-ios-sdk/releases/tag/3.0.1)
|
|
7
|
+
- `3.0.x` Releases - [3.0.0](#300) | [3.0.1](#301) | [3.0.2](#302) | [3.0.3](#303)
|
|
10
8
|
|
|
11
9
|
---
|
|
12
10
|
|
|
11
|
+
### [3.0.3](https://github.com/underdog-tech/pinwheel-ios-sdk/releases/tag/3.0.3)
|
|
12
|
+
|
|
13
|
+
Changed Minimum Android SDK requirements to 22
|
|
14
|
+
|
|
15
|
+
### [3.0.2](https://github.com/underdog-tech/pinwheel-ios-sdk/releases/tag/3.0.2)
|
|
16
|
+
|
|
17
|
+
Changed Minimum Android SDK requirements to 22
|
|
18
|
+
|
|
19
|
+
### [3.0.1](https://github.com/underdog-tech/pinwheel-ios-sdk/releases/tag/3.0.1)
|
|
20
|
+
|
|
13
21
|
Expand internal functionality to support a broader range of platforms and increase conversion rate.
|
|
14
22
|
|
|
15
23
|
### [3.0.0](https://github.com/underdog-tech/pinwheel-ios-sdk/releases/tag/3.0.0)
|
|
16
24
|
|
|
17
|
-
---
|
|
18
|
-
|
|
19
25
|
This new major version bump introduces an updated API to support partner-based switches.
|
|
20
26
|
|
|
21
27
|
#### Changed
|
package/RNPinwheelSDK.podspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Pod::Spec.new do |s|
|
|
2
2
|
s.name = "RNPinwheelSDK"
|
|
3
|
-
s.version = "3.0.
|
|
3
|
+
s.version = "3.0.3"
|
|
4
4
|
s.summary = "React Native plugin for Pinwheel's SDK"
|
|
5
5
|
s.description = <<-DESC
|
|
6
6
|
An open source React Native plugin for calling Pinwheel's native SDKs to manage payroll data.
|
package/android/build.gradle
CHANGED
|
@@ -16,11 +16,11 @@ apply plugin: 'com.android.library'
|
|
|
16
16
|
apply plugin: 'kotlin-android'
|
|
17
17
|
|
|
18
18
|
android {
|
|
19
|
-
compileSdkVersion
|
|
19
|
+
compileSdkVersion 31
|
|
20
20
|
|
|
21
21
|
defaultConfig {
|
|
22
|
-
minSdkVersion
|
|
23
|
-
targetSdkVersion
|
|
22
|
+
minSdkVersion 22
|
|
23
|
+
targetSdkVersion 31
|
|
24
24
|
versionCode 1
|
|
25
25
|
versionName "1.0"
|
|
26
26
|
}
|
package/dist/constants.d.ts
CHANGED
package/dist/constants.js
CHANGED