diff --git a/CHANGELOG.md b/CHANGELOG.md index cacaa5573..e9f866ff3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## Next +## 3.14.2 - 2024-11-08 + +- fix issue with resetting accent color in SwiftUI app ([#238](https://github.com/PostHog/posthog-ios/pull/238)) - fix $feature_flag_called not captured after reloading flags ([#232](https://github.com/PostHog/posthog-ios/pull/232)) ## 3.14.1 - 2024-11-05 diff --git a/PostHog.podspec b/PostHog.podspec index ac022c1e6..5d7c815cf 100644 --- a/PostHog.podspec +++ b/PostHog.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "PostHog" - s.version = "3.14.1" + s.version = "3.14.2" 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 a8930dc15..45998b487 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.14.1" +public var postHogVersion = "3.14.2" // This property is internal only public var postHogSdkName = "posthog-ios"