Skip to content

Commit 6621132

Browse files
authored
Release/6.1.0 (#566)
* Fix min version for locations * Update CT SDK to 5.0.1 * update version * Update SPM
1 parent 2c9f0aa commit 6621132

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

Leanplum-iOS-Location.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Pod::Spec.new do |s|
1414
s.source_files = 'LeanplumSDKLocation/LeanplumSDKLocation/Classes/**/*'
1515
s.frameworks = 'CoreLocation'
1616
s.documentation_url = 'https://docs.leanplum.com/'
17-
s.dependency 'Leanplum-iOS-SDK', "~> 6.0.0"
17+
s.dependency 'Leanplum-iOS-SDK', "~> 6.0"
1818
s.module_name = 'LeanplumLocation'
1919
s.swift_versions = '5.0'
2020
end

Leanplum-iOS-LocationAndBeacons.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Pod::Spec.new do |s|
1414
s.source_files = 'LeanplumSDKLocation/LeanplumSDKLocation/Classes/**/*'
1515
s.frameworks = 'CoreLocation'
1616
s.documentation_url = 'https://docs.leanplum.com/'
17-
s.dependency 'Leanplum-iOS-SDK', "~> 6.0.0"
17+
s.dependency 'Leanplum-iOS-SDK', "~> 6.0"
1818
s.module_name = 'LeanplumLocationAndBeacons'
1919
s.pod_target_xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => 'LP_BEACON=1' }
2020
s.swift_versions = '5.0'

Leanplum-iOS-SDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Pod::Spec.new do |s|
3232
s.resource_bundle = {
3333
'Leanplum-iOS-SDK' => 'LeanplumSDK/LeanplumSDKBundle/Resources/**/*'
3434
}
35-
s.dependency 'CleverTap-iOS-SDK', '~> 5.0.0'
35+
s.dependency 'CleverTap-iOS-SDK', '~> 5.0.1'
3636
s.swift_version = '5.0'
3737
end
3838

LeanplumSDK/LeanplumSDK/Classes/Internal/LPConstants.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
#define IS_NOOP (IS_JAILBROKEN || [LPConstantsState sharedState].isTestMode || [LPConstantsState sharedState].isInPermanentFailureState)
3939
#define RETURN_IF_NOOP if (IS_NOOP) return
4040

41-
#define LEANPLUM_SDK_VERSION @"6.0.5"
41+
#define LEANPLUM_SDK_VERSION @"6.1.0"
4242
#define LEANPLUM_CLIENT @"ios"
4343
#define LEANPLUM_SUPPORTED_ENCODING @"gzip"
4444

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ spm:
99

1010
updateVersion:
1111
sed -i '' -e "s/#define LEANPLUM_SDK_VERSION @.*/#define LEANPLUM_SDK_VERSION @\"`cat sdk-version.txt`\"/g" "./LeanplumSDK/LeanplumSDK/Classes/Internal/LPConstants.h";\
12-
minVersion=6.0.0; version=`cat sdk-version.txt`;\
12+
minVersion=6.0; version=`cat sdk-version.txt`;\
1313
if [[ "$$version" != *"beta"* ]]; then \
1414
sed -i '' -e "s/s.dependency 'Leanplum-iOS-SDK', .*/s.dependency 'Leanplum-iOS-SDK', \"~> $$minVersion\"/g" "./Leanplum-iOS-Location.podspec";\
1515
sed -i '' -e "s/s.dependency 'Leanplum-iOS-SDK', .*/s.dependency 'Leanplum-iOS-SDK', \"~> $$minVersion\"/g" "./Leanplum-iOS-LocationAndBeacons.podspec";\

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ let package = Package(
1111
.library(name: "LeanplumLocation", targets: ["LeanplumLocation"])
1212
],
1313
dependencies: [
14-
.package(url: "https://github.com/CleverTap/clevertap-ios-sdk", from: "5.0.0")
14+
.package(url: "https://github.com/CleverTap/clevertap-ios-sdk", from: "5.0.1")
1515
],
1616
targets: [
1717
.binaryTarget(
1818
name: "Leanplum",
19-
url: "https://github.com/Leanplum/Leanplum-iOS-SDK/releases/download/6.0.5/Leanplum.xcframework.zip",
20-
checksum: "3dbde241cb4c7b2d0da12caadff6c4d51e8f79607ab9174e858d8301f638eaf6"
19+
url: "https://github.com/Leanplum/Leanplum-iOS-SDK/releases/download/6.1.0/Leanplum.xcframework.zip",
20+
checksum: "791978f8c3e50cd4ebd1e8538424e2699347b4fa77a87f1c90c5e141ddfd2cf2"
2121
),
2222
.target(
2323
name: "LeanplumLocation",

Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use_modular_headers!
44
workspace 'Leanplum.xcworkspace'
55

66
def clever_tap
7-
pod 'CleverTap-iOS-SDK', '~> 5.0.0'
7+
pod 'CleverTap-iOS-SDK', '~> 5.0.1'
88
end
99

1010
target 'LeanplumSDKApp' do

sdk-version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.0.5
1+
6.1.0

0 commit comments

Comments
 (0)