From 0a52f194a609d5f2ea153af87c92a2db660cab89 Mon Sep 17 00:00:00 2001 From: Christopher Hoffmann Date: Thu, 7 Mar 2024 10:45:02 -0700 Subject: [PATCH] fix upperbound restriction and bump patch version --- AEPAssurance.podspec | 6 +++--- AEPAssurance/Source/AssuranceConstants.swift | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/AEPAssurance.podspec b/AEPAssurance.podspec index 168c706..dce376f 100644 --- a/AEPAssurance.podspec +++ b/AEPAssurance.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "AEPAssurance" - s.version = "4.1.1" + s.version = "4.1.2" s.summary = "AEPAssurance SDK for Adobe Experience Platform Mobile SDK. Written and maintained by Adobe." s.description = <<-DESC @@ -15,8 +15,8 @@ Pod::Spec.new do |s| s.swift_version = '5.1' s.pod_target_xcconfig = { 'BUILD_LIBRARY_FOR_DISTRIBUTION' => 'YES' } - s.dependency 'AEPCore', '>= 4.0.0' - s.dependency 'AEPServices', '>= 4.0.0' + s.dependency 'AEPCore', '>= 4.0.0', '< 5.0' + s.dependency 'AEPServices', '>= 4.0.0', '< 5.0' s.source_files = 'AEPAssurance/Source/**/*.swift' end diff --git a/AEPAssurance/Source/AssuranceConstants.swift b/AEPAssurance/Source/AssuranceConstants.swift index 938eccc..79848b9 100644 --- a/AEPAssurance/Source/AssuranceConstants.swift +++ b/AEPAssurance/Source/AssuranceConstants.swift @@ -15,7 +15,7 @@ import Foundation enum AssuranceConstants { static let EXTENSION_NAME = "com.adobe.assurance" static let FRIENDLY_NAME = "Assurance" - static let EXTENSION_VERSION = "4.1.1" + static let EXTENSION_VERSION = "4.1.2" static let LOG_TAG = FRIENDLY_NAME static let DEFAULT_ENVIRONMENT = AssuranceEnvironment.prod