Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

The changelog for `SuperwallKit`. Also see the [releases](https://github.com/superwall/Superwall-iOS/releases) on GitHub.

## 4.15.4

### Enhancements

- Adds `singularDeviceId` as an `IntegrationAttribute`.

## 4.15.3

### Fixes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ public enum IntegrationAttribute: Int {

/// The Appstack identifier.
case appstackId

/// The Singular device identifier (SDID).
case singularDeviceId
}

// MARK: - CustomStringConvertible
Expand Down Expand Up @@ -123,6 +126,8 @@ extension IntegrationAttribute: CustomStringConvertible {
return "customerioId"
case .appstackId:
return "appstackId"
case .singularDeviceId:
return "singularDeviceId"
}
}
}
2 changes: 1 addition & 1 deletion Sources/SuperwallKit/Misc/Constants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ let sdkVersion = """
*/

let sdkVersion = """
4.15.3
4.15.4
"""
2 changes: 1 addition & 1 deletion SuperwallKit.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "SuperwallKit"
s.version = "4.15.3"
s.version = "4.15.4"
s.summary = "Superwall: In-App Paywalls Made Easy"
s.description = "Paywall infrastructure for mobile apps :) we make things like editing your paywall and running price tests as easy as clicking a few buttons. superwall.com"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,8 @@ struct AttributionTests {
.tenjinId: "tenjin-id",
.posthogUserId: "posthog-user-id",
.customerioId: "customerio-id",
.appstackId: "appstack-id"
.appstackId: "appstack-id",
.singularDeviceId: "singular-device-id"
]

// When
Expand Down Expand Up @@ -378,6 +379,7 @@ struct AttributionTests {
#expect(storedProps["posthogUserId"] as? String == "posthog-user-id")
#expect(storedProps["customerioId"] as? String == "customerio-id")
#expect(storedProps["appstackId"] as? String == "appstack-id")
#expect(storedProps["singularDeviceId"] as? String == "singular-device-id")
}
}

Expand Down
Loading