Skip to content

Commit

Permalink
v2.22.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nsagnett committed Jan 21, 2021
2 parents 4de3c1e + 4a6c878 commit c42194b
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion ATInternet-Apple-SDK-AppExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "ATInternet-Apple-SDK-AppExtension"
s.version = '2.22.0'
s.version = '2.22.1'
s.summary = "AT Internet mobile analytics solution for Apple devices"
s.homepage = "https://github.com/at-internet/atinternet-apple-sdk"
s.documentation_url = 'https://developers.atinternet-solutions.com/apple-en/getting-started-apple-en/operating-principle-apple-en/'
Expand Down
2 changes: 1 addition & 1 deletion ATInternet-Apple-SDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "ATInternet-Apple-SDK"
s.version = '2.22.0'
s.version = '2.22.1'
s.summary = "AT Internet mobile analytics solution for Apple devices"
s.homepage = "https://github.com/at-internet/atinternet-apple-sdk"
s.documentation_url = 'https://developers.atinternet-solutions.com/apple-en/getting-started-apple-en/operating-principle-apple-en/'
Expand Down
2 changes: 1 addition & 1 deletion ATInternetTracker/Sources/Builder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ class Builder: Operation {
mhOlt = nil
}

if TechnicalContext.optOut {
if TechnicalContext.optOut || Privacy.getVisitorMode() == Privacy.VisitorMode.optOut {
if let sendHitWhenOptOut = self.tracker.configuration.parameters[TrackerConfigurationKeys.SendHitWhenOptOut]?.toBool() {
if !sendHitWhenOptOut {
tracker.delegate?.warningDidOccur?("'sendHitWhenOptOut' configuration disabled, hit(s) not sent")
Expand Down
2 changes: 1 addition & 1 deletion ATInternetTracker/Sources/Info-iOS-Extension.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.22.0</string>
<string>2.22.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion ATInternetTracker/Sources/Info-iOS.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.22.0</string>
<string>2.22.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion ATInternetTracker/Sources/Info-tvOS.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.19.0</string>
<string>1.19.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion ATInternetTracker/Sources/Info-watchOS.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.19.0</string>
<string>1.19.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions ATInternetTracker/Sources/TechnicalContext.swift
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ class TechnicalContext: NSObject {
class var sdkVersion: String {
get {
#if os(watchOS) || os(tvOS)
return "1.19.0"
return "1.19.1"
#else
return "2.22.0"
return "2.22.1"
#endif
}
}
Expand Down
2 changes: 1 addition & 1 deletion ATInternetTracker/Tests/Info-iOS.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>2.22.0</string>
<string>2.22.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit c42194b

Please sign in to comment.