Skip to content

Commit

Permalink
Fix typo in unsupported error (#22)
Browse files Browse the repository at this point in the history
Bump version to 1.0.2 ready for release.
  • Loading branch information
dcaunt authored Nov 7, 2024
1 parent 01dfd42 commit 80aef83
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Sources/UID2IMAPlugin/EUIDIMASecureSignalsAdapter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ extension EUIDIMASecureSignalsAdapter: IMASecureSignalsAdapter {
let version = IMAVersion()
version.majorVersion = 1
version.minorVersion = 0
version.patchVersion = 1
version.patchVersion = 2
return version
}

Expand Down
2 changes: 1 addition & 1 deletion Sources/UID2IMAPlugin/OperatingSystemSupport.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let isOperatingSystemSupported = ProcessInfo.processInfo.isOperatingSystemAtLeas
)

/// Adapter called on an unsupported operating system version i.e. lower than UID2's deployment target.
@objc(UID2GMAOperatingSystemUnsupported)
@objc(UID2IMAOperatingSystemUnsupported)
public final class OperatingSystemUnsupportedError: NSError, @unchecked Sendable {

convenience init() {
Expand Down
2 changes: 1 addition & 1 deletion Sources/UID2IMAPlugin/UID2IMASecureSignalsAdapter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ extension UID2IMASecureSignalsAdapter: IMASecureSignalsAdapter {
let version = IMAVersion()
version.majorVersion = 1
version.minorVersion = 0
version.patchVersion = 1
version.patchVersion = 2
return version
}

Expand Down
4 changes: 2 additions & 2 deletions UID2IMAPlugin.podspec.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"summary": "A plugin for integrating UID2 and Google IMA into iOS applications.",
"homepage": "https://unifiedid.com/",
"license": "Apache License, Version 2.0",
"version": "1.0.1",
"version": "1.0.2",
"authors": {
"David Snabel-Caunt": "[email protected]"
},
"source": {
"git": "https://github.com/IABTechLab/uid2-ios-plugin-google-ima.git",
"tag": "v1.0.1"
"tag": "v1.0.2"
},
"platforms": {
"ios": "12.0"
Expand Down

0 comments on commit 80aef83

Please sign in to comment.