diff --git a/CHANGELOG.md b/CHANGELOG.md index b5b2af09..cd9d2b1c 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # ChangeLog +## [7.22.0](https://github.com/algolia/instantsearch-ios/compare/7.21.2...7.22.0) (2023-01-30) + +### Feat + +- **dynamicFacetList**: add default selection & faceting parameters (#272) ([1c311b5](https://github.com/algolia/instantsearch-ios/commit/1c311b5)) + +### Fix + +- **HitsObservableController**: empty queries conditional display not working (#267) ([d67b03a](https://github.com/algolia/instantsearch-ios/commit/d67b03a)) +- send empty events packages if all non statisfying condition (#268) ([0dcd985](https://github.com/algolia/instantsearch-ios/commit/0dcd985)) + + + ## [7.21.2](https://github.com/algolia/instantsearch-ios/compare/7.21.1...7.21.2) (2022-11-02) ### Fix diff --git a/InstantSearch.podspec b/InstantSearch.podspec index 646b4dae..2f0010fb 100644 --- a/InstantSearch.podspec +++ b/InstantSearch.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'InstantSearch' - s.version = '7.21.2' + s.version = '7.22.0' 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 ba573337..d9fbfaeb 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: 21, patch: 2, prereleaseIdentifier: nil) } +public extension Version { static let current: Version = .init(major: 7, minor: 22, patch: 0, prereleaseIdentifier: nil) }