@pinwheel/react-native-pinwheel 2.5.1 → 2.5.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 +8 -1
- package/RNPinwheelSDK.podspec +2 -2
- package/android/build.gradle +1 -1
- package/constants.d.ts +1 -3
- package/constants.js +1 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,14 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## 2.5.x Releases
|
|
6
6
|
|
|
7
|
-
[2.5.0](#250) | [2.5.1](#251)
|
|
7
|
+
[2.5.0](#250) | [2.5.1](#251) | [2.5.2](#252)
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
### 2.5.2
|
|
11
|
+
|
|
12
|
+
#### Notes
|
|
13
|
+
|
|
14
|
+
- Expand internal functionality to support a broader range of platforms and increase conversion rate.
|
|
8
15
|
|
|
9
16
|
---
|
|
10
17
|
### 2.5.1
|
package/RNPinwheelSDK.podspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Pod::Spec.new do |s|
|
|
2
2
|
s.name = "RNPinwheelSDK"
|
|
3
|
-
s.version = "2.5.
|
|
3
|
+
s.version = "2.5.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', '2.4.
|
|
17
|
+
s.dependency 'PinwheelSDK', '2.4.7'
|
|
18
18
|
end
|
package/android/build.gradle
CHANGED
package/constants.d.ts
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 declare const VERSION = "2.5.
|
|
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 = "2.5.2";
|
package/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 = '2.5.
|
|
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 = '2.5.2';
|