@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.
@@ -0,0 +1,4 @@
1
+ {
2
+ "java.compile.nullAnalysis.mode": "automatic",
3
+ "java.configuration.updateBuildConfiguration": "interactive"
4
+ }
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
@@ -1,6 +1,6 @@
1
1
  Pod::Spec.new do |s|
2
2
  s.name = "RNPinwheelSDK"
3
- s.version = "3.0.1"
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.
@@ -16,11 +16,11 @@ apply plugin: 'com.android.library'
16
16
  apply plugin: 'kotlin-android'
17
17
 
18
18
  android {
19
- compileSdkVersion 33
19
+ compileSdkVersion 31
20
20
 
21
21
  defaultConfig {
22
- minSdkVersion 24
23
- targetSdkVersion 33
22
+ minSdkVersion 22
23
+ targetSdkVersion 31
24
24
  versionCode 1
25
25
  versionName "1.0"
26
26
  }
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Importing package.json here causes a problem with the folder structure when we npm pack and publish.
3
3
  */
4
- export declare const VERSION = "3.0.1";
4
+ export declare const VERSION = "3.0.3";
package/dist/constants.js CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Importing package.json here causes a problem with the folder structure when we npm pack and publish.
3
3
  */
4
- export const VERSION = '3.0.1';
4
+ export const VERSION = '3.0.3';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pinwheel/react-native-pinwheel",
3
- "version": "3.0.1",
3
+ "version": "3.0.3",
4
4
  "type": "module",
5
5
  "description": "Pinwheel React Native SDK",
6
6
  "main": "dist/index.js",