diff --git a/CHANGELOG.md b/CHANGELOG.md index edf9ad7c6..b5a0ea361 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Next +## 3.13.3 - 2024-10-25 + +- fix race condition in PostHogFileBackedQueue.deleteFiles ([#218](https://github.com/PostHog/posthog-ios/pull/218)) + ## 3.13.2 - 2024-10-18 - add missing capture method for objC with groups overload ([#217](https://github.com/PostHog/posthog-ios/pull/217)) diff --git a/PostHog.podspec b/PostHog.podspec index a375e2161..b70a331e6 100644 --- a/PostHog.podspec +++ b/PostHog.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "PostHog" - s.version = "3.13.2" + s.version = "3.13.3" s.summary = "The hassle-free way to add posthog to your iOS app." s.description = <<-DESC diff --git a/PostHog/PostHogVersion.swift b/PostHog/PostHogVersion.swift index 57c8b5fc1..fa42f2d51 100644 --- a/PostHog/PostHogVersion.swift +++ b/PostHog/PostHogVersion.swift @@ -9,7 +9,7 @@ import Foundation // if you change this, make sure to also change it in the podspec and check if the script scripts/bump-version.sh still works // This property is internal only -public var postHogVersion = "3.13.2" +public var postHogVersion = "3.13.3" // This property is internal only public var postHogSdkName = "posthog-ios"