diff --git a/AlgoliaSearchClient.podspec b/AlgoliaSearchClient.podspec index 1878e314..0f6c96ae 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.0.0-beta.17' - s.source = { :git => 'https://github.com/algolia/algoliasearch-client-swift.git', :tag => '9.0.0-beta.17' } + s.version = '9.0.0' + s.source = { :git => 'https://github.com/algolia/algoliasearch-client-swift.git', :tag => '9.0.0' } s.authors = { 'Algolia' => 'contact@algolia.com' } s.license = { :type => 'MIT', :file => 'LICENSE' } s.homepage = 'https://github.com/algolia/algoliasearch-client-swift/tree/next' diff --git a/CHANGELOG.md b/CHANGELOG.md index 192e50e0..faf2a220 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [9.0.0](https://github.com/algolia/algoliasearch-client-swift/compare/9.0.0-beta.17...9.0.0) + +New major version released! Browse [our documentation](https://www.algolia.com/doc/libraries/swift) + +- [22348001a](https://github.com/algolia/api-clients-automation/commit/22348001a) fix(specs): required ingestion search params ([#3516](https://github.com/algolia/api-clients-automation/pull/3516)) by [@shortcuts](https://github.com/shortcuts/) + ## [9.0.0-beta.17](https://github.com/algolia/algoliasearch-client-swift/compare/9.0.0-beta.16...9.0.0-beta.17) - [4c052002e](https://github.com/algolia/api-clients-automation/commit/4c052002e) feat(specs): recursive snippets and highlights result ([#3497](https://github.com/algolia/api-clients-automation/pull/3497)) by [@shortcuts](https://github.com/shortcuts/) diff --git a/Sources/Core/Helpers/Version.swift b/Sources/Core/Helpers/Version.swift index b62ec776..1726d030 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.0.0-beta.17") + static let current: Version = .init(version: "9.0.0") }