@pinwheel/react-native-pinwheel 3.0.0 → 3.0.2

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/CHANGELOG.md CHANGED
@@ -4,12 +4,20 @@ 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)
8
-
9
- ### [3.0.0](https://github.com/underdog-tech/pinwheel-ios-sdk/releases/tag/3.0.0)
7
+ - `3.0.x` Releases - [3.0.0](#300) | [3.0.1](#301) | [3.0.2](#302)
10
8
 
11
9
  ---
12
10
 
11
+ ### [3.0.2](https://github.com/underdog-tech/pinwheel-ios-sdk/releases/tag/3.0.2)
12
+
13
+ Changed Minimum Android SDK requirements to 22
14
+
15
+ ### [3.0.1](https://github.com/underdog-tech/pinwheel-ios-sdk/releases/tag/3.0.1)
16
+
17
+ Expand internal functionality to support a broader range of platforms and increase conversion rate.
18
+
19
+ ### [3.0.0](https://github.com/underdog-tech/pinwheel-ios-sdk/releases/tag/3.0.0)
20
+
13
21
  This new major version bump introduces an updated API to support partner-based switches.
14
22
 
15
23
  #### Changed
@@ -28,9 +36,15 @@ This new major version bump introduces an updated API to support partner-based s
28
36
 
29
37
  ## 2.5.x Releases
30
38
 
31
- [2.5.0](#250) | [2.5.1](#251)
39
+ [2.5.0](#250) | [2.5.1](#251) | [2.5.2](#252)
40
+
41
+ ---
42
+ ### [2.5.2](https://github.com/underdog-tech/pinwheel-ios-sdk/releases/tag/2.5.2)
32
43
 
33
44
  ---
45
+
46
+ Expand internal functionality to support a broader range of platforms and increase conversion rate.
47
+
34
48
  ### 2.5.1
35
49
 
36
50
  #### Notes
@@ -1,6 +1,6 @@
1
1
  Pod::Spec.new do |s|
2
2
  s.name = "RNPinwheelSDK"
3
- s.version = "3.0.0"
3
+ s.version = "3.0.2"
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.
@@ -14,5 +14,5 @@ Pod::Spec.new do |s|
14
14
  s.public_header_files = 'ios/**/*.h'
15
15
  s.requires_arc = true
16
16
  s.dependency "React"
17
- s.dependency 'PinwheelSDK', '3.0.0'
17
+ s.dependency 'PinwheelSDK', '3.0.2'
18
18
  end
@@ -41,7 +41,7 @@ rootProject.allprojects {
41
41
  }
42
42
  }
43
43
 
44
- def PW_SDK_VERSION = '3.0.0'
44
+ def PW_SDK_VERSION = '3.0.1'
45
45
 
46
46
  dependencies {
47
47
  def pwVersion = rootProject.hasProperty('pwVersion') ? rootProject.pwVersion : PW_SDK_VERSION
@@ -206,4 +206,4 @@ class PinwheelViewManager(
206
206
  private const val REACT_CLASS = "RNTPinwheel"
207
207
  private const val COMMAND_CREATE = 1
208
208
  }
209
- }}
209
+ }
@@ -1,6 +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.0";
5
- export declare const LINK_PAGE_URL = "https://cdn.getpinwheel.com/link-v2.3.0.html";
6
- export declare const PINWHEEL_DOMAIN = "getpinwheel.com";
4
+ export declare const VERSION = "3.0.2";
package/dist/constants.js CHANGED
@@ -1,6 +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.0';
5
- export const LINK_PAGE_URL = 'https://cdn.getpinwheel.com/link-v2.3.0.html';
6
- export const PINWHEEL_DOMAIN = 'getpinwheel.com';
4
+ export const VERSION = '3.0.2';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pinwheel/react-native-pinwheel",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "type": "module",
5
5
  "description": "Pinwheel React Native SDK",
6
6
  "main": "dist/index.js",