diff --git a/CHANGELOG.md b/CHANGELOG.md index f57bc0f..07bddca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [2.2.1] - 2024-08-29 +### Changed +- `PrivacyInfo.xcprivacy` is now part of the package + ## [2.2.0] - 2024-07-09 ### Changed - Fixed infinite retries for network errors diff --git a/HelloSift/Cartfile b/HelloSift/Cartfile index 3ff2599..24380bd 100644 --- a/HelloSift/Cartfile +++ b/HelloSift/Cartfile @@ -1 +1 @@ -github "SiftScience/sift-ios" ~> 2.1.8 +github "SiftScience/sift-ios" ~> 2.2.0 diff --git a/README.md b/README.md index 84d6f30..4406f44 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ This will create initial files and folders including hidden​ `​.gitignore​ dependencies: [ // Dependencies declare other packages that this package depends on. ​// .package(url: /* package url */, from: "1.0.0"), - .​package​(​url​: "https://github.com/SiftScience/sift-ios.git"​, ​from​: "2.2.0"​) + .​package​(​url​: "https://github.com/SiftScience/sift-ios.git"​, ​from​: "2.2.1"​) ], ​targets​: [ ​// Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Sift.podspec b/Sift.podspec index 592eee4..f6e1d98 100644 --- a/Sift.podspec +++ b/Sift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = 'Sift' - spec.version = '2.2.0' + spec.version = '2.2.1' spec.authors = 'Sift Science' spec.license = { :type => 'MIT', diff --git a/Sift/Sift.m b/Sift/Sift.m index 3e8881d..4823c87 100644 --- a/Sift/Sift.m +++ b/Sift/Sift.m @@ -57,7 +57,7 @@ + (instancetype)sharedInstance { - (instancetype)initWithRootDirPath:(NSString *)rootDirPath { self = [super init]; if (self) { - _sdkVersion = @"v2.2.0"; + _sdkVersion = @"v2.2.1"; _rootDirPath = rootDirPath;