diff --git a/CHANGELOG.md b/CHANGELOG.md index b800f4c..60eacad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [2.1.6] - 2024-01-02 +### Added +- Added Privacy Manifest + ## [2.1.5] - 2023-07-25 ### Changed - The Podspec iOS deployment target is set to 12.0 diff --git a/HelloSift/Cartfile b/HelloSift/Cartfile index a6e101a..b5b4981 100644 --- a/HelloSift/Cartfile +++ b/HelloSift/Cartfile @@ -1 +1 @@ -github "SiftScience/sift-ios" ~> 2.1.4 \ No newline at end of file +github "SiftScience/sift-ios" ~> 2.1.5 diff --git a/HelloSift/Cartfile.resolved b/HelloSift/Cartfile.resolved index 8b5432f..2dc8194 100644 --- a/HelloSift/Cartfile.resolved +++ b/HelloSift/Cartfile.resolved @@ -1 +1 @@ -github "SiftScience/sift-ios" "v2.1.4" +github "SiftScience/sift-ios" "v2.1.5" diff --git a/README.md b/README.md index 536c83a..7c6ccc8 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.1.5"​) + .​package​(​url​: "https://github.com/SiftScience/sift-ios.git"​, ​from​: "2.1.6"​) ], ​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 75fb599..a0a6863 100644 --- a/Sift.podspec +++ b/Sift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = 'Sift' - spec.version = '2.1.5' + spec.version = '2.1.6' spec.authors = 'Sift Science' spec.license = { :type => 'MIT', diff --git a/Sift/Sift.m b/Sift/Sift.m index 88f3f5a..15909be 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.1.5"; + _sdkVersion = @"v2.1.6"; _rootDirPath = rootDirPath;