From f6ee78e267a9b019850bef6656d76575e81fc270 Mon Sep 17 00:00:00 2001 From: pandeymangg Date: Wed, 5 Aug 2026 21:06:20 +0530 Subject: [PATCH] chore: bump to 2.1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Minor rather than patch: the release adds support for survey-interaction segment filters, and it changes behaviour for every app that upgrades — the user-state sync timer never fired before, so user state now actually refreshes on expiry where it previously stayed frozen for the whole session. No public API changed; every declaration this release touched is internal. Also refreshes the two concrete versions named in the README install snippets. --- FormbricksSDK.podspec | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/FormbricksSDK.podspec b/FormbricksSDK.podspec index d56c2f0..9473d5a 100644 --- a/FormbricksSDK.podspec +++ b/FormbricksSDK.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "FormbricksSDK" - s.version = "2.0.0" + s.version = "2.1.0" s.summary = "iOS SDK for Formbricks" s.homepage = "https://github.com/formbricks/ios" s.license = { :type => "MIT", :file => "LICENSE" } diff --git a/README.md b/README.md index 73ed602..0f8bc5d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The iOS SDK for Formbricks 1. In Xcode choose **File → Add Packages…** 2. Enter your repo URL (e.g. `https://github.com/formbricks/ios.git`) -3. Choose version rule (e.g. "Up to Next Major" starting at `2.0.0`). +3. Choose version rule (e.g. "Up to Next Major" starting at `2.1.0`). 4. Import in your code: ```swift import FormbricksSDK @@ -23,7 +23,7 @@ The iOS SDK for Formbricks use_frameworks! :linkage => :static target 'YourTargetName' do - pod 'FormbricksSDK', '2.0.0 (or the latest version)' + pod 'FormbricksSDK', '2.1.0 (or the latest version)' end ```