react-native-smallcase-gateway 1.2.2 → 1.3.0

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
@@ -2,6 +2,27 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [1.3.0](https://github.com/smallcase/react-native-smallcase-gateway/compare/v1.2.4...v1.3.0) (2022-06-01)
6
+
7
+
8
+ ### Features
9
+
10
+ * kite native login ([26fca00](https://github.com/smallcase/react-native-smallcase-gateway/commit/26fca00a10c2ed02e3db85180c370c8bb661bc1f))
11
+
12
+ ### [1.2.4](https://github.com/smallcase/react-native-smallcase-gateway/compare/v1.2.3...v1.2.4) (2022-05-30)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * excluded arm64 arch for ios simulators ([207e3a6](https://github.com/smallcase/react-native-smallcase-gateway/commit/207e3a62a9764875d61c7888c2a1a9efcd9af796))
18
+
19
+ ### [1.2.3](https://github.com/smallcase/react-native-smallcase-gateway/compare/v1.2.2...v1.2.3) (2022-05-30)
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * show orders and gateway rebranding issues ([025221c](https://github.com/smallcase/react-native-smallcase-gateway/commit/025221c9790411451c70c1b598bc8f9471600d8e))
25
+
5
26
  ### [1.2.2](https://github.com/smallcase/react-native-smallcase-gateway/compare/v1.2.1...v1.2.2) (2022-05-27)
6
27
 
7
28
 
@@ -1,7 +1,7 @@
1
- def DEFAULT_COMPILE_SDK_VERSION = 28
1
+ def DEFAULT_COMPILE_SDK_VERSION = 30
2
2
  def DEFAULT_BUILD_TOOLS_VERSION = '28.0.3'
3
3
  def DEFAULT_MIN_SDK_VERSION = 21
4
- def DEFAULT_TARGET_SDK_VERSION = 28
4
+ def DEFAULT_TARGET_SDK_VERSION = 30
5
5
 
6
6
  def safeExtGet(prop, fallback) {
7
7
  rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
@@ -82,7 +82,7 @@ repositories {
82
82
  dependencies {
83
83
  //noinspection GradleDynamicVersion
84
84
  implementation 'com.facebook.react:react-native:+' // From node_modules
85
- implementation 'com.smallcase.gateway:sdk:3.2.0'
85
+ implementation 'com.smallcase.gateway:sdk:3.3.0'
86
86
  implementation "androidx.core:core-ktx:1.3.1"
87
87
  implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
88
88
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-native-smallcase-gateway",
3
3
  "title": "React Native Smallcase Gateway",
4
- "version": "1.2.2",
4
+ "version": "1.3.0",
5
5
  "description": "smallcase gateway bindings for react native",
6
6
  "main": "index.js",
7
7
  "files": [
@@ -23,6 +23,6 @@ Pod::Spec.new do |s|
23
23
  s.requires_arc = true
24
24
 
25
25
  s.dependency "React-Core"
26
- s.dependency 'SCGateway', '3.2.1'
26
+ s.dependency 'SCGateway', '3.2.4'
27
27
  end
28
28