Skip to content

Commit

Permalink
Merge pull request #442 from cacheung/4xVersion
Browse files Browse the repository at this point in the history
v4.3.1 - add max version for podspec dependencies
  • Loading branch information
cacheung authored Mar 6, 2024
2 parents 1a8d42d + 82c35c5 commit 73c0f4d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions AEPEdge.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "AEPEdge"
s.version = "4.3.0"
s.version = "4.3.1"
s.summary = "Experience Platform Edge extension for Adobe Experience Platform Mobile SDK. Written and maintained by Adobe."

s.description = <<-DESC
Expand All @@ -18,8 +18,8 @@ Pod::Spec.new do |s|
s.swift_version = '5.1'

s.pod_target_xcconfig = { 'BUILD_LIBRARY_FOR_DISTRIBUTION' => 'YES' }
s.dependency 'AEPCore', '>= 4.1.0'
s.dependency 'AEPEdgeIdentity', '>= 4.0.0'
s.dependency 'AEPCore', '>= 4.1.0', '< 5.0.0'
s.dependency 'AEPEdgeIdentity', '>= 4.0.0', '< 5.0.0'

s.source_files = 'Sources/**/*.swift'
end
4 changes: 2 additions & 2 deletions AEPEdge.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1658,7 +1658,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 4.3.0;
MARKETING_VERSION = 4.3.1;
OTHER_LDFLAGS = "$(inherited)";
PRODUCT_BUNDLE_IDENTIFIER = com.adobe.aep.edge;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
Expand Down Expand Up @@ -1694,7 +1694,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 4.3.0;
MARKETING_VERSION = 4.3.1;
OTHER_LDFLAGS = "$(inherited)";
PRODUCT_BUNDLE_IDENTIFIER = com.adobe.aep.edge;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
Expand Down
10 changes: 5 additions & 5 deletions Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ PODS:
- AEPCore (4.1.0):
- AEPRulesEngine (>= 4.0.0)
- AEPServices (>= 4.1.0)
- AEPEdge (4.3.0):
- AEPCore (>= 4.1.0)
- AEPEdgeIdentity (>= 4.0.0)
- AEPEdge (4.3.1):
- AEPCore (< 5.0.0, >= 4.1.0)
- AEPEdgeIdentity (< 5.0.0, >= 4.0.0)
- AEPEdgeConsent (4.0.0):
- AEPCore (>= 4.0.0)
- AEPEdge (>= 4.0.0)
Expand Down Expand Up @@ -43,7 +43,7 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
AEPAssurance: ee78c45752b29696f280854cfc4d4f8d11babad8
AEPCore: 20fb832a7467b25ca4aca186c0a5a1e3c0c6abc3
AEPEdge: 301fb849383fca513c1046fe90bac0bcd1f8e404
AEPEdge: c34de4d42c430c93431065556207817190749ade
AEPEdgeConsent: 54c1b6a30a3d646e3d4bc4bae1713755422b471e
AEPEdgeIdentity: c2396b9119abd6eb530ea11efc58ec019b163bd4
AEPRulesEngine: 458450a34922823286ead045a0c2bd8c27e224c6
Expand All @@ -52,4 +52,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: 5ec62860669adff6d3ffed90f13fc2a5ad5a4fff

COCOAPODS: 1.13.0
COCOAPODS: 1.14.3
2 changes: 1 addition & 1 deletion Sources/EdgeConstants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import Foundation
enum EdgeConstants {

static let EXTENSION_NAME = "com.adobe.edge"
static let EXTENSION_VERSION = "4.3.0"
static let EXTENSION_VERSION = "4.3.1"
static let FRIENDLY_NAME = "AEPEdge"
static let LOG_TAG = FRIENDLY_NAME

Expand Down

0 comments on commit 73c0f4d

Please sign in to comment.