Skip to content

Commit

Permalink
Merge pull request #9 from adjust/v111
Browse files Browse the repository at this point in the history
Version 1.1.1
  • Loading branch information
genadyb committed Jul 14, 2023
2 parents 7a03acb + fe0e85b commit 8de7f55
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 15 deletions.
6 changes: 3 additions & 3 deletions AdjustAdobeExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@

Pod::Spec.new do |s|
s.name = 'AdjustAdobeExtension'
s.version = '1.1.0'
s.version = '1.1.1'
s.summary = 'Adjust SDK extension for Adobe Experience Platform.'
s.description = <<-DESC
A leading attribution solution that brings the full power of mobile ad measurement to your campaigns.
DESC
s.homepage = 'https://github.com/adjust/ios_adobe_extension'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Adjust' => 'sdk@adjust.com' }
s.source = { :git => 'https://github.com/adjust/ios_adobe_extension.git', :tag => "v1.1.0" }
s.source = { :git => 'https://github.com/adjust/ios_adobe_extension.git', :tag => "v1.1.1" }

s.ios.deployment_target = '10.0'

Expand All @@ -19,6 +19,6 @@ A leading attribution solution that brings the full power of mobile ad measureme
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'}

s.dependency 'Adjust', '4.31.0'
s.dependency 'Adjust', '4.33.5'
s.dependency 'ACPCore'
end
2 changes: 1 addition & 1 deletion AdjustAdobeExtension/Classes/AdjustAdobeExtension.m
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

NSString * const ADJAdobeExtensionLogTag = @"AdjustAdobeExtension";
NSString * const ADJAdobeExtensionName = @"com.adjust.adobeextension";
NSString * const ADJAdobeExtensionSdkPrefix = @"adobe_ext1.1.0";
NSString * const ADJAdobeExtensionSdkPrefix = @"adobe_ext1.1.1";
NSString * const ADJAdobeEventDataKeyAction = @"action";
NSString * const ADJAdobeEventDataKeyContextData = @"contextdata";

Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
### Version 1.1.1 (14th July 2023)
### Changed
- Updated native iOS SDK dependency to v4.33.5.

#### Native iOS SDK
- [iOS@v4.33.5](https://github.com/adjust/ios_sdk/tree/v4.33.5)

---

### Version 1.1.0 (21st July 2022)
#### Added
- Added ability to send event callback and partner parameters.
Expand Down
10 changes: 5 additions & 5 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ PODS:
- ACPUserProfile/xcframeworks (= 2.2.0)
- ACPUserProfile/xcframeworks (2.2.0):
- ACPCore (>= 2.9.0)
- Adjust (4.31.0):
- Adjust/Core (= 4.31.0)
- Adjust/Core (4.31.0)
- AdjustAdobeExtension (1.1.0):
- Adjust (4.33.5):
- Adjust/Core (= 4.33.5)
- Adjust/Core (4.33.5)
- AdjustAdobeExtension (1.1.1):
- ACPCore
- Adjust (= 4.31.0)
- Adjust (= 4.33.5)

DEPENDENCIES:
- ACPCore (~> 2.0)
Expand Down
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let package = Package(
.package(
name: "Adjust",
url: "https://github.com/adjust/ios_sdk.git",
from: "4.31.0"
from: "4.33.5"
),
],
targets: [
Expand All @@ -29,22 +29,22 @@ let package = Package(
),
.binaryTarget(
name: "ACPCore",
url: "https://github.com/adjust/ios_adobe_extension/releases/download/v1.1.0/ACPCore.xcframework-2.9.5.zip",
url: "https://github.com/adjust/ios_adobe_extension/releases/download/v1.1.1/ACPCore.xcframework-2.9.5.zip",
checksum: "1feb78e211bfc1d4e52e499323772f66c3eaab56434342465f7ee8a036a51fa9"
),
.binaryTarget(
name: "ACPIdentity",
url: "https://github.com/adjust/ios_adobe_extension/releases/download/v1.1.0/ACPIdentity.xcframework-2.5.2.zip",
url: "https://github.com/adjust/ios_adobe_extension/releases/download/v1.1.1/ACPIdentity.xcframework-2.5.2.zip",
checksum: "9a4843568ad0832e575dbecb2524265bbfd9baf2557bc972f78b4359d70f8bc0"
),
.binaryTarget(
name: "ACPLifecycle",
url: "https://github.com/adjust/ios_adobe_extension/releases/download/v1.1.0/ACPLifecycle.xcframework-2.2.1.zip",
url: "https://github.com/adjust/ios_adobe_extension/releases/download/v1.1.1/ACPLifecycle.xcframework-2.2.1.zip",
checksum: "02d7b6a1c615d9f5b222d58a95a0ded1ce4b1dac60fbecc9858d9e8dcd74c2eb"
),
.binaryTarget(
name: "ACPSignal",
url: "https://github.com/adjust/ios_adobe_extension/releases/download/v1.1.0/ACPSignal.xcframework-2.2.0.zip",
url: "https://github.com/adjust/ios_adobe_extension/releases/download/v1.1.1/ACPSignal.xcframework-2.2.0.zip",
checksum: "2f7c9db8e8163fe2c5aa3e89fce485075b32751e65402f10a69eea674dd965a5"
)
]
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.1.1

0 comments on commit 8de7f55

Please sign in to comment.