diff --git a/CHANGELOG.md b/CHANGELOG.md index 83600ce9..9cd9c3e9 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # ChangeLog +## [7.25.1](https://github.com/algolia/instantsearch-ios/compare/7.25.0...7.25.1) (2023-05-30) + +### Misc + +- fix(dynamic facets): recalculate selections on facets order change (#289) ([168505a](https://github.com/algolia/instantsearch-ios/commit/168505a)) + + + ## [7.25.0](https://github.com/algolia/instantsearch-ios/compare/7.24.0...7.25.0) (2023-05-05) ### Fix diff --git a/InstantSearch.podspec b/InstantSearch.podspec index 4d2fea1c..bdcb38b4 100644 --- a/InstantSearch.podspec +++ b/InstantSearch.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'InstantSearch' - s.version = '7.25.0' + s.version = '7.25.1' s.platforms = { :ios => "9.0", :osx => "10.11", :watchos => "2.0", :tvos => "9.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 cd76f22e..16a27159 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: 25, patch: 0, prereleaseIdentifier: nil) } +public extension Version { static let current: Version = .init(major: 7, minor: 25, patch: 1, prereleaseIdentifier: nil) }