diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ddbef4c..574f4bae 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # ChangeLog +## [7.26.2](https://github.com/algolia/instantsearch-ios/compare/7.26.1...7.26.2) (2024-06-04) + +### Fix + +- align versions with api client (#315) ([27105ae](https://github.com/algolia/instantsearch-ios/commit/27105ae)) +- **insights**: control auto sending events w/ `isAutoSendingHitsViewEvents` (#314) ([8573411](https://github.com/algolia/instantsearch-ios/commit/8573411)) + + + ## [7.26.1](https://github.com/algolia/instantsearch-ios/compare/7.26.0...7.26.1) (2023-08-28) ### Misc diff --git a/InstantSearch.podspec b/InstantSearch.podspec index 67c061bf..e23fc3e2 100644 --- a/InstantSearch.podspec +++ b/InstantSearch.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'InstantSearch' - s.version = '7.26.1' + s.version = '7.26.2' s.platforms = { :ios => "14.0", :osx => "11.0", :watchos => "7.0", :tvos => "14.0" } s.license = { type: 'Apache 2.0', file: 'LICENSE.md' } diff --git a/Sources/InstantSearchCore/Helper/Version+Current.swift b/Sources/InstantSearchCore/Helper/Version+Current.swift index 7141ab76..8c74bcd2 100644 --- a/Sources/InstantSearchCore/Helper/Version+Current.swift +++ b/Sources/InstantSearchCore/Helper/Version+Current.swift @@ -1,2 +1,2 @@ // This is generated file. Don't modify it manually. -public extension Version { static let current: Version = .init(major: 7, minor: 26, patch: 1, prereleaseIdentifier: nil) } +public extension Version { static let current: Version = .init(major: 7, minor: 26, patch: 2, prereleaseIdentifier: nil) }