diff --git a/CHANGELOG.md b/CHANGELOG.md index b6f2efc..5770bd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [2.1.3] - 2023-07-17 +### Removed +- Removing submodule HackerNewsReader dependency + ## [2.1.2] - 2023-06-14 ### Fixed warnings related to following - A function declaration without a prototype is deprecated in all version of C diff --git a/README.md b/README.md index ae5f2ce..f534d1f 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.1"​) + .​package​(​url​: "https://github.com/SiftScience/sift-ios.git"​, ​from​: "2.1.3"​) ], ​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 bd9bdcc..d83a7ac 100644 --- a/Sift.podspec +++ b/Sift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = 'Sift' - spec.version = '2.1.2' + spec.version = '2.1.3' spec.authors = 'Sift Science' spec.license = { :type => 'MIT', diff --git a/Sift/Sift.m b/Sift/Sift.m index aba287e..ccccd37 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.2"; + _sdkVersion = @"v2.1.3"; _rootDirPath = rootDirPath;