Skip to content

Commit

Permalink
Hotfix to solve cocoapods issue
Browse files Browse the repository at this point in the history
Update to 3.4.2
  • Loading branch information
yusuftor committed Sep 29, 2023
1 parent 62426d5 commit c973cb0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -2,7 +2,7 @@

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

## 3.4.1
## 3.4.2

### Fixes

Expand Down
2 changes: 1 addition & 1 deletion Sources/SuperwallKit/Misc/Constants.swift
Expand Up @@ -18,5 +18,5 @@ let sdkVersion = """
*/

let sdkVersion = """
3.4.1
3.4.2
"""
Expand Up @@ -34,12 +34,12 @@ final class SerialTaskManager {
return
}
// Check if there are tasks in the queue
if taskQueue.isEmpty {
if self.taskQueue.isEmpty {
return
}

// Get the next task from the queue
guard let nextTask = taskQueue.dequeue() else {
guard let nextTask = self.taskQueue.dequeue() else {
return
}

Expand Down
2 changes: 1 addition & 1 deletion SuperwallKit.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "SuperwallKit"
s.version = "3.4.1"
s.version = "3.4.2"
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

0 comments on commit c973cb0

Please sign in to comment.