diff --git a/AlgoliaSearchClient.podspec b/AlgoliaSearchClient.podspec index ea31132a..7b463602 100644 --- a/AlgoliaSearchClient.podspec +++ b/AlgoliaSearchClient.podspec @@ -1,8 +1,8 @@ Pod::Spec.new do |s| s.name = 'AlgoliaSearchClient' s.module_name = 'AlgoliaSearchClient' - s.version = '9.7.1' - s.source = { :git => 'https://github.com/algolia/algoliasearch-client-swift.git', :tag => '9.7.1' } + s.version = '9.7.2' + s.source = { :git => 'https://github.com/algolia/algoliasearch-client-swift.git', :tag => '9.7.2' } s.authors = { 'Algolia' => 'contact@algolia.com' } s.license = { :type => 'MIT', :file => 'LICENSE' } s.homepage = 'https://github.com/algolia/algoliasearch-client-swift/tree/main' diff --git a/CHANGELOG.md b/CHANGELOG.md index cde1683c..3b47917a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [9.7.2](https://github.com/algolia/algoliasearch-client-swift/compare/9.7.1...9.7.2) + +- [cd98290fa](https://github.com/algolia/api-clients-automation/commit/cd98290fa) fix(specs): Typo tolernace on words ([#3968](https://github.com/algolia/api-clients-automation/pull/3968)) by [@gazconroy](https://github.com/gazconroy/) +- [5866c2954](https://github.com/algolia/api-clients-automation/commit/5866c2954) fix(specs): Add context to hitsPerPage ([#3969](https://github.com/algolia/api-clients-automation/pull/3969)) by [@gazconroy](https://github.com/gazconroy/) +- [162dfafa1](https://github.com/algolia/api-clients-automation/commit/162dfafa1) fix(clients): escape char in comments ([#3973](https://github.com/algolia/api-clients-automation/pull/3973)) by [@millotp](https://github.com/millotp/) +- [8b879dead](https://github.com/algolia/api-clients-automation/commit/8b879dead) fix(specs): alternativesAsExact is plurals and synonyms ([#3974](https://github.com/algolia/api-clients-automation/pull/3974)) by [@gazconroy](https://github.com/gazconroy/) +- [1a9b95e85](https://github.com/algolia/api-clients-automation/commit/1a9b95e85) fix(specs): Separators are non-alphanumeric characters ([#3978](https://github.com/algolia/api-clients-automation/pull/3978)) by [@gazconroy](https://github.com/gazconroy/) +- [519fd9840](https://github.com/algolia/api-clients-automation/commit/519fd9840) fix(specs): multiple clients fixes ([#3971](https://github.com/algolia/api-clients-automation/pull/3971)) by [@shortcuts](https://github.com/shortcuts/) + ## [9.7.1](https://github.com/algolia/algoliasearch-client-swift/compare/9.7.0...9.7.1) - [06c48549b](https://github.com/algolia/api-clients-automation/commit/06c48549b) chore(swift): github releases are created by the monorepo ([#3928](https://github.com/algolia/api-clients-automation/pull/3928)) by [@Fluf22](https://github.com/Fluf22/) diff --git a/Sources/Core/Helpers/Version.swift b/Sources/Core/Helpers/Version.swift index 05a75780..c1bb2e0d 100644 --- a/Sources/Core/Helpers/Version.swift +++ b/Sources/Core/Helpers/Version.swift @@ -48,5 +48,5 @@ extension Version: CustomStringConvertible { } public extension Version { - static let current: Version = .init(version: "9.7.1") + static let current: Version = .init(version: "9.7.2") }