diff --git a/CHANGELOG.md b/CHANGELOG.md index 77c84c7c..ecb5fa2d 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # ChangeLog +## [7.5.0](https://github.com/algolia/instantsearch-ios/compare/7.4.0...7.5.0) (2020-11-04) + +### Feat + +- Improve API convenience (#141) ([789e092](https://github.com/algolia/instantsearch-ios/commit/789e092)) +- Connection between Numeric filter and Searcher to fetch numeric value bounds (#143) ([4f6509b](https://github.com/algolia/instantsearch-ios/commit/4f6509b)) + +### Refactor + +- Suppress generic requirements in `LoadingConnector` and `QueryInputConnector` (#142) ([85f9f69](https://github.com/algolia/instantsearch-ios/commit/85f9f69)) + + + ## [7.4.0](https://github.com/algolia/instantsearch-ios/compare/7.3.0...7.4.0) (2020-10-27) ### Feat diff --git a/InstantSearch.podspec b/InstantSearch.podspec index f5a72c7e..8b33147f 100644 --- a/InstantSearch.podspec +++ b/InstantSearch.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'InstantSearch' - s.version = '7.4.0' + s.version = '7.5.0' s.platforms = { :ios => "9.0", :osx => "10.10", :watchos => "3.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 c95905ef..df550290 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: 4, patch: 0, prereleaseIdentifier: nil) } +public extension Version { static let current: Version = .init(major: 7, minor: 5, patch: 0, prereleaseIdentifier: nil) }