diff --git a/CHANGELOG.md b/CHANGELOG.md index fbf00507..897980e4 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # ChangeLog +## [7.26.4](https://github.com/algolia/instantsearch-ios/compare/7.26.3...7.26.4) (2025-02-19) + +### Fix + +- **sortby**: properly map indices names (#332) ([a4cdf26](https://github.com/algolia/instantsearch-ios/commit/a4cdf26)) + +### Refactor + +- optimize page map iterator to avoid items copying (#329) ([d3eff80](https://github.com/algolia/instantsearch-ios/commit/d3eff80)) + + + ## [7.26.3](https://github.com/algolia/instantsearch-ios/compare/7.26.2...7.26.3) (2024-07-29) ### Fix diff --git a/InstantSearch.podspec b/InstantSearch.podspec index 16cb5b9d..dd9bec50 100644 --- a/InstantSearch.podspec +++ b/InstantSearch.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'InstantSearch' - s.version = '7.26.3' + s.version = '7.26.4' 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 b9bd0bf8..eccb756e 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: 3, prereleaseIdentifier: nil) } +public extension Version { static let current: Version = .init(major: 7, minor: 26, patch: 4, prereleaseIdentifier: nil) }