react-native-klarna-inapp-sdk 2.1.2 → 2.1.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/CHANGELOG.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # Changelog
2
2
  All notable changes to React Native Klarna In-App SDK will be documented in this file.
3
3
 
4
+ ### [2.1.3] - 2021-11-16
5
+ - Updated Android SDK (2.1.3) & iOS SDK (2.1.4)
6
+
4
7
  ### [2.1.0] - 2021-11-16
5
8
  - Update Android SDK & iOS SDK version to the latest (2.1.0)
6
9
 
package/Jenkinsfile CHANGED
@@ -61,7 +61,7 @@ pipeline {
61
61
 
62
62
  stage('Pod Install TestApp') {
63
63
  steps {
64
- bash 'cd TestApp/ios && pod install && cd ../..'
64
+ bash 'cd TestApp/ios && pod install --repo-update && pod update KlarnaMobileSDK && cd ../..'
65
65
  }
66
66
  }
67
67
 
@@ -56,7 +56,7 @@ repositories {
56
56
 
57
57
  dependencies {
58
58
  implementation "com.facebook.react:react-native:${safeExtGet('reactnativeVersion', '+')}"
59
- implementation 'com.klarna.mobile:sdk:2.1.3'
59
+ implementation 'com.klarna.mobile:sdk:2.1.4'
60
60
 
61
61
  testImplementation "junit:junit:4.13"
62
62
  testImplementation 'androidx.test:core:1.2.0'
package/ios/Podfile CHANGED
@@ -8,7 +8,7 @@ target 'KlarnaInAppSDK' do
8
8
  # use_frameworks!
9
9
 
10
10
  # Pods for KlarnaInAppSDK
11
- pod 'KlarnaMobileSDK', '2.1.3'
11
+ pod 'KlarnaMobileSDK', '2.1.4'
12
12
  pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector"
13
13
  pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec"
14
14
  pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-native-klarna-inapp-sdk",
3
3
  "title": "React Native Klarna In-App SDK",
4
- "version": "2.1.2",
4
+ "version": "2.1.3",
5
5
  "description": "This library wraps Klarna’s In-App SDK and exposes its functionality as React Native components. It currently supports Klarna Payments via a Payment View component.",
6
6
  "main": "index.js",
7
7
  "scripts": {},
@@ -25,7 +25,7 @@ Pod::Spec.new do |s|
25
25
  end
26
26
 
27
27
  s.dependency "React"
28
- s.dependency 'KlarnaMobileSDK', '2.1.3'
28
+ s.dependency 'KlarnaMobileSDK', '2.1.4'
29
29
  # s.dependency "..."
30
30
 
31
31
  end