diff --git a/CHANGELOG.md b/CHANGELOG.md index ecc8a6ba..022b32d5 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # ChangeLog +## [7.20.1](https://github.com/algolia/instantsearch-ios/compare/7.20.0...7.20.1) (2022-09-27) + +### Fix + +- **hierarchical**: Hierarchical facets clearing (#252) ([3ba16f7](https://github.com/algolia/instantsearch-ios/commit/3ba16f7)) + + + ## [7.20.0](https://github.com/algolia/instantsearch-ios/compare/7.19.1...7.20.0) (2022-08-31) ### Refactor diff --git a/InstantSearch.podspec b/InstantSearch.podspec index f8dd509f..9c187ed9 100644 --- a/InstantSearch.podspec +++ b/InstantSearch.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'InstantSearch' - s.version = '7.20.0' + s.version = '7.20.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 8bf0e370..bdc423a4 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: 20, patch: 0, prereleaseIdentifier: nil) } +public extension Version { static let current: Version = .init(major: 7, minor: 20, patch: 1, prereleaseIdentifier: nil) }