Manos Chorianopoulos

version 2.1.0

...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
4 4
5 **Get started with SwiftWarplyFramework in just 5 minutes!** 5 **Get started with SwiftWarplyFramework in just 5 minutes!**
6 6
7 -**Version**: 2.0.1 | **Minimum iOS**: 17.0 | **Swift**: 5.0+ 7 +**Version**: 2.1.0 | **Minimum iOS**: 17.0 | **Swift**: 5.0+
8 8
9 --- 9 ---
10 10
...@@ -51,7 +51,7 @@ platform :ios, '17.0' ...@@ -51,7 +51,7 @@ platform :ios, '17.0'
51 target 'YourApp' do 51 target 'YourApp' do
52 use_frameworks! 52 use_frameworks!
53 53
54 - pod 'SwiftWarplyFramework', '~> 2.0.1' 54 + pod 'SwiftWarplyFramework', :git => 'https://git@git.warp.ly/open-source/warply_sdk_framework.git', :tag => 2.1.0
55 end 55 end
56 ``` 56 ```
57 57
...@@ -1095,7 +1095,7 @@ Task { ...@@ -1095,7 +1095,7 @@ Task {
1095 1095
1096 When reporting issues, please include: 1096 When reporting issues, please include:
1097 1097
1098 -1. **Framework Version**: `2.0.1` 1098 +1. **Framework Version**: `2.1.0`
1099 2. **iOS Version**: Minimum 17.0 1099 2. **iOS Version**: Minimum 17.0
1100 3. **Error Details**: Full error messages and stack traces 1100 3. **Error Details**: Full error messages and stack traces
1101 4. **Code Sample**: Minimal reproducible example 1101 4. **Code Sample**: Minimal reproducible example
...@@ -1106,7 +1106,7 @@ When reporting issues, please include: ...@@ -1106,7 +1106,7 @@ When reporting issues, please include:
1106 1106
1107 ```swift 1107 ```swift
1108 // Get framework version and status 1108 // Get framework version and status
1109 -print("Framework Version: 2.0.1") 1109 +print("Framework Version: 2.1.0")
1110 print("SDK Initialized: \(WarplySDK.shared != nil)") 1110 print("SDK Initialized: \(WarplySDK.shared != nil)")
1111 print("Network Status: \(WarplySDK.shared.getNetworkStatus())") 1111 print("Network Status: \(WarplySDK.shared.getNetworkStatus())")
1112 print("Current Language: \(WarplySDK.shared.applicationLocale)") 1112 print("Current Language: \(WarplySDK.shared.applicationLocale)")
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 2
3 ## 🚀 Essential Guide for Developers 3 ## 🚀 Essential Guide for Developers
4 4
5 -**Version**: 2.0.1 | **iOS**: 17.0+ | **Swift**: 5.0+ 5 +**Version**: 2.1.0 | **iOS**: 17.0+ | **Swift**: 5.0+
6 6
7 --- 7 ---
8 8
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
10 10
11 ```ruby 11 ```ruby
12 # Podfile 12 # Podfile
13 -pod 'SwiftWarplyFramework', '~> 2.0.1' 13 +pod 'SwiftWarplyFramework', :git => 'https://git@git.warp.ly/open-source/warply_sdk_framework.git', :tag => 2.1.0
14 ``` 14 ```
15 15
16 --- 16 ---
...@@ -323,7 +323,7 @@ func safeAPICall() { ...@@ -323,7 +323,7 @@ func safeAPICall() {
323 ## 🔍 Debug Info 323 ## 🔍 Debug Info
324 324
325 ```swift 325 ```swift
326 -print("SDK Version: 2.0.1") 326 +print("SDK Version: 2.1.0")
327 print("App UUID: \(WarplySDK.shared.appUuid)") 327 print("App UUID: \(WarplySDK.shared.appUuid)")
328 print("Merchant ID: \(WarplySDK.shared.merchantId)") 328 print("Merchant ID: \(WarplySDK.shared.merchantId)")
329 print("Language: \(WarplySDK.shared.applicationLocale)") 329 print("Language: \(WarplySDK.shared.applicationLocale)")
......
1 Pod::Spec.new do |spec| 1 Pod::Spec.new do |spec|
2 2
3 spec.name = "SwiftWarplyFramework" 3 spec.name = "SwiftWarplyFramework"
4 - spec.version = "2.0.1" 4 + spec.version = "2.1.0"
5 spec.summary = "A framework used for several functionalities." 5 spec.summary = "A framework used for several functionalities."
6 6
7 spec.description = "This is the Warply framework used for react native or swift apps for analytics, push notifications and the functionality of the app." 7 spec.description = "This is the Warply framework used for react native or swift apps for analytics, push notifications and the functionality of the app."
...@@ -17,7 +17,7 @@ Pod::Spec.new do |spec| ...@@ -17,7 +17,7 @@ Pod::Spec.new do |spec|
17 17
18 spec.platform = :ios, "17.0" 18 spec.platform = :ios, "17.0"
19 19
20 - spec.source = { :git => "https://git.warp.ly/open-source/warply_sdk_framework.git", :tag => "2.0.1" } 20 + spec.source = { :git => "https://git.warp.ly/open-source/warply_sdk_framework.git", :tag => "2.1.0" }
21 # spec.public_header_files = "SwiftWarplyFramework.framework/Headers/*.h" 21 # spec.public_header_files = "SwiftWarplyFramework.framework/Headers/*.h"
22 22
23 # ==> OLD 23 # ==> OLD
......
...@@ -9,7 +9,7 @@ SwiftWarplyFramework is an iOS SDK that provides loyalty program functionality, ...@@ -9,7 +9,7 @@ SwiftWarplyFramework is an iOS SDK that provides loyalty program functionality,
9 - Minimum iOS Version: 17.0 9 - Minimum iOS Version: 17.0
10 - Swift Version: 5.0+ 10 - Swift Version: 5.0+
11 - Build System: CocoaPods 11 - Build System: CocoaPods
12 -- Framework Version: 2.0.1 12 +- Framework Version: 2.1.0
13 13
14 ### Dependencies 14 ### Dependencies
15 - RSBarcodes_Swift (~> 5.2.0) - Barcode scanning and generation 15 - RSBarcodes_Swift (~> 5.2.0) - Barcode scanning and generation
......