From c0ebe2dacd2a375a2737b718ca56db3e391816f4 Mon Sep 17 00:00:00 2001 From: Artem Dvornichenko Date: Tue, 25 Jul 2023 13:29:58 +0300 Subject: [PATCH] Release 2.1.5 --- CHANGELOG.md | 4 ++++ HelloSift/Cartfile | 2 +- HelloSift/Cartfile.resolved | 2 +- README.md | 2 +- Sift.podspec | 2 +- Sift/Sift.m | 2 +- 6 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6168b8..b800f4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [2.1.5] - 2023-07-25 +### Changed +- The Podspec iOS deployment target is set to 12.0 + ## [2.1.4] - 2023-07-18 ### Removed - Removing samples/HackerNewsReader submodule directory diff --git a/HelloSift/Cartfile b/HelloSift/Cartfile index 418e48e..a6e101a 100644 --- a/HelloSift/Cartfile +++ b/HelloSift/Cartfile @@ -1 +1 @@ -github "SiftScience/sift-ios" ~> 2.1.2 \ No newline at end of file +github "SiftScience/sift-ios" ~> 2.1.4 \ No newline at end of file diff --git a/HelloSift/Cartfile.resolved b/HelloSift/Cartfile.resolved index c6acc1f..8b5432f 100644 --- a/HelloSift/Cartfile.resolved +++ b/HelloSift/Cartfile.resolved @@ -1 +1 @@ -github "SiftScience/sift-ios" "v2.1.1" +github "SiftScience/sift-ios" "v2.1.4" diff --git a/README.md b/README.md index e04fcc4..536c83a 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.4"​) + .​package​(​url​: "https://github.com/SiftScience/sift-ios.git"​, ​from​: "2.1.5"​) ], ​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 5eefdf6..75fb599 100644 --- a/Sift.podspec +++ b/Sift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = 'Sift' - spec.version = '2.1.4' + spec.version = '2.1.5' spec.authors = 'Sift Science' spec.license = { :type => 'MIT', diff --git a/Sift/Sift.m b/Sift/Sift.m index 6ee2ad4..88f3f5a 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.4"; + _sdkVersion = @"v2.1.5"; _rootDirPath = rootDirPath;