diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cd9c3e9..98fc9371 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # ChangeLog +## [7.25.2](https://github.com/algolia/instantsearch-ios/compare/7.25.1...7.25.2) (2023-06-11) + +### Fix + +- **filters**: issue with textual value escaping (#293) ([a2a7b73](https://github.com/algolia/instantsearch-ios/commit/a2a7b73)) +- Examples app (#288) ([cfd7b9b](https://github.com/algolia/instantsearch-ios/commit/cfd7b9b)) + + + ## [7.25.1](https://github.com/algolia/instantsearch-ios/compare/7.25.0...7.25.1) (2023-05-30) ### Misc diff --git a/InstantSearch.podspec b/InstantSearch.podspec index bdcb38b4..000570ad 100644 --- a/InstantSearch.podspec +++ b/InstantSearch.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'InstantSearch' - s.version = '7.25.1' + s.version = '7.25.2' 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 16a27159..a3694480 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: 1, prereleaseIdentifier: nil) } +public extension Version { static let current: Version = .init(major: 7, minor: 25, patch: 2, prereleaseIdentifier: nil) }