Skip to content

Commit eeae0c9

Browse files
authored
Release/6.0.0 (#534)
* Fix bundle signing Xcode 14 * update version * update spm
1 parent 08685b4 commit eeae0c9

File tree

7 files changed

+15
-11
lines changed

7 files changed

+15
-11
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', "~> 5.0.0"
17+
s.dependency 'Leanplum-iOS-SDK', "~> 6.0.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', "~> 5.0.0"
17+
s.dependency 'Leanplum-iOS-SDK', "~> 6.0.0"
1818
s.module_name = 'LeanplumLocationAndBeacons'
1919
s.pod_target_xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => 'LP_BEACON=1' }
2020
s.swift_versions = '5.0'

LeanplumSDK/LeanplumSDK.xcodeproj/project.pbxproj

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2288,16 +2288,18 @@
22882288
075AAEF026847FE1007CA1BD /* Debug */ = {
22892289
isa = XCBuildConfiguration;
22902290
buildSettings = {
2291-
CODE_SIGN_STYLE = Automatic;
2291+
CODE_SIGNING_ALLOWED = NO;
2292+
CODE_SIGN_STYLE = Manual;
22922293
COMBINE_HIDPI_IMAGES = YES;
2293-
DEVELOPMENT_TEAM = 4XLWYATZ5P;
2294+
DEVELOPMENT_TEAM = "";
22942295
ENABLE_BITCODE = NO;
22952296
INFOPLIST_FILE = "LeanplumSDKBundle/Supporting Files/Info.plist";
22962297
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
22972298
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
22982299
MACOSX_DEPLOYMENT_TARGET = 11.3;
22992300
PRODUCT_BUNDLE_IDENTIFIER = "com.leanplum.LeanplumSDK-Bundle";
23002301
PRODUCT_NAME = "Leanplum-iOS-SDK";
2302+
PROVISIONING_PROFILE_SPECIFIER = "";
23012303
SDKROOT = iphoneos;
23022304
SKIP_INSTALL = YES;
23032305
SUPPORTS_MACCATALYST = NO;
@@ -2309,16 +2311,18 @@
23092311
075AAEF126847FE1007CA1BD /* Release */ = {
23102312
isa = XCBuildConfiguration;
23112313
buildSettings = {
2312-
CODE_SIGN_STYLE = Automatic;
2314+
CODE_SIGNING_ALLOWED = NO;
2315+
CODE_SIGN_STYLE = Manual;
23132316
COMBINE_HIDPI_IMAGES = YES;
2314-
DEVELOPMENT_TEAM = 4XLWYATZ5P;
2317+
DEVELOPMENT_TEAM = "";
23152318
ENABLE_BITCODE = NO;
23162319
INFOPLIST_FILE = "LeanplumSDKBundle/Supporting Files/Info.plist";
23172320
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
23182321
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
23192322
MACOSX_DEPLOYMENT_TARGET = 11.3;
23202323
PRODUCT_BUNDLE_IDENTIFIER = "com.leanplum.LeanplumSDK-Bundle";
23212324
PRODUCT_NAME = "Leanplum-iOS-SDK";
2325+
PROVISIONING_PROFILE_SPECIFIER = "";
23222326
SDKROOT = iphoneos;
23232327
SKIP_INSTALL = YES;
23242328
SUPPORTS_MACCATALYST = NO;

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 @"5.0.0"
41+
#define LEANPLUM_SDK_VERSION @"6.0.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=5.0.0; version=`cat sdk-version.txt`;\
12+
minVersion=6.0.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: 2 additions & 2 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: "4.1.1")
14+
.package(url: "https://github.com/Leanplum/Leanplum-iOS-SDK/releases/download/6.0.0/Leanplum.xcframework.zip",
1515
],
1616
targets: [
1717
.binaryTarget(
1818
name: "Leanplum",
1919
url: "https://github.com/Leanplum/Leanplum-iOS-SDK/releases/download/5.0.0/Leanplum.xcframework.zip",
20-
checksum: "b49fd986f4e2394a0f46d455705085c3c39acb122d58f7098a230452a2e1b17d"
20+
checksum: "79cbaef9fa35ae12e35a9ecb4417f06079edf166005ed1a582cb903e0d15c135"
2121
),
2222
.target(
2323
name: "LeanplumLocation",

sdk-version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.0
1+
6.0.0

0 commit comments

Comments
 (0)